diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-02-03 09:03:59 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-02-03 09:03:59 +0000 |
commit | bde17fdc4d567a35701b35f26ac511ae42b8ec91 (patch) | |
tree | 83063742c5dd096c3bd727e3a5dc93b9b3a07738 /gcc/config.gcc | |
parent | d8a8dab31c72d09222f42cdce6cc65d2437c8762 (diff) | |
download | gcc-bde17fdc4d567a35701b35f26ac511ae42b8ec91.zip gcc-bde17fdc4d567a35701b35f26ac511ae42b8ec91.tar.gz gcc-bde17fdc4d567a35701b35f26ac511ae42b8ec91.tar.bz2 |
config.gcc: Reenable check for obsolete targets.
* config.gcc: Reenable check for obsolete targets.
Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*,
mips-sgi-irix6.[0-4]*.
From-SVN: r156462
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 9c18adf..849e667 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -205,16 +205,21 @@ xm_file= md_file= # Obsolete configurations. -#case ${target} in -# ) -# if test "x$enable_obsolete" != xyes; then -# echo "*** Configuration ${target} is obsolete." >&2 -# echo "*** Specify --enable-obsolete to build it anyway." >&2 -# echo "*** Support will be REMOVED in the next major release of GCC," >&2 -# echo "*** unless a maintainer comes forward." >&2 -# exit 1 -# fi;; -#esac +case ${target} in + alpha*-dec-osf4* \ + | alpha*-dec-osf5.0* \ + | mips-sgi-irix5* \ + | mips-sgi-irix6.[0-4]5* \ + | *-*-solaris2.7* \ + ) + if test "x$enable_obsolete" != xyes; then + echo "*** Configuration ${target} is obsolete." >&2 + echo "*** Specify --enable-obsolete to build it anyway." >&2 + echo "*** Support will be REMOVED in the next major release of GCC," >&2 + echo "*** unless a maintainer comes forward." >&2 + exit 1 + fi;; +esac # Unsupported targets list. Do not put an entry in this list unless # it would otherwise be caught by a more permissive pattern. The list |