diff options
author | René Rebe <rene@exactcode.de> | 2024-06-12 12:42:00 +0200 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2024-10-09 11:28:20 +0200 |
commit | 452b12cea8869f120e7c703577c4270476fe6b76 (patch) | |
tree | 1bebf6b561b0eb3b8465f54ab44f5fac7b1aa10f /gcc/config.gcc | |
parent | 9df0772d50d8f8a75389d319949632e5d111cc6c (diff) | |
download | gcc-452b12cea8869f120e7c703577c4270476fe6b76.zip gcc-452b12cea8869f120e7c703577c4270476fe6b76.tar.gz gcc-452b12cea8869f120e7c703577c4270476fe6b76.tar.bz2 |
Remove ia64*-*-linux from the list of obsolete targets
The following un-deprecates ia64*-*-linux for GCC 15. Since we plan to
support this for some years to come.
gcc/
* config.gcc: Only list ia64*-*-(hpux|vms|elf) in the list of
obsoleted targets.
contrib/
* config-list.mk (LIST): no --enable-obsolete for ia64-linux.
Signed-off-by: René Rebe <rene@exactcode.de>
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f09ce9f..71ac3ba 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -272,7 +272,7 @@ esac # Obsolete configurations. case ${target} in - ia64*-*-* \ + ia64*-*-hpux* | ia64*-*-*vms* | ia64*-*-elf* \ | nios2*-*-* \ ) if test "x$enable_obsolete" != xyes; then |