diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-03 09:03:59 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-02-03 09:03:59 +0000 |
commit | b138ccdd6fea80286f8982ec81343eb8b40e6782 (patch) | |
tree | 83063742c5dd096c3bd727e3a5dc93b9b3a07738 /gcc/config.gcc | |
parent | 27635231f058eebc201d5fd7cf67ca6b7d8530ee (diff) | |
download | gcc-b138ccdd6fea80286f8982ec81343eb8b40e6782.tar.gz |
* config.gcc: Reenable check for obsolete targets.
Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*,
mips-sgi-irix6.[0-4]*.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156462 138bc75d-0d04-0410-961f-82ee72b054a4
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 9c18adf5ef0..849e66767fc 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 |