diff options
author | Richard Biener <rguenther@suse.de> | 2024-02-23 08:59:12 +0100 |
---|---|---|
committer | Richard Biener <rguenther@suse.de> | 2024-02-23 10:45:31 +0100 |
commit | bff1cbf2f61d9532eceaa6ebe71185f4b0902a76 (patch) | |
tree | 9a7122092a3b5da0bd3cb146318dcbf911a9d230 /gcc | |
parent | 818094a07a0b550643ecd0090647dc29cc9e153a (diff) | |
download | gcc-bff1cbf2f61d9532eceaa6ebe71185f4b0902a76.zip gcc-bff1cbf2f61d9532eceaa6ebe71185f4b0902a76.tar.gz gcc-bff1cbf2f61d9532eceaa6ebe71185f4b0902a76.tar.bz2 |
Add ia64*-*-* to the list of obsolete targets
The following deprecates ia64*-*-* for GCC 14. Since we plan to
force LRA for GCC 15 and the target only has slim chances of getting
updated this notifies people in advance. Given both Linux and
glibc have axed the target further development is also made difficult.
There is no listed maintainer for ia64 either.
PR target/90785
gcc/
* config.gcc: Add ia64*-*-* to the list of obsoleted targets.
contrib/
* config-list.mk (LIST): --enable-obsolete for ia64*-*-*.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config.gcc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index a0f9c67..2e35a11 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -273,6 +273,7 @@ esac # Obsolete configurations. case ${target}${target_min} in *-*-solaris2.11.[0-3]* \ + | ia64*-*-* \ ) if test "x$enable_obsolete" != xyes; then echo "*** Configuration ${target}${target_min} is obsolete." >&2 |