mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
d8a8dab31c
commit
bde17fdc4d
|
@ -1,3 +1,9 @@
|
||||||
|
2010-02-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
|
||||||
|
|
||||||
|
* config.gcc: Reenable check for obsolete targets.
|
||||||
|
Obsolete alpha*-dec-osf4*, alpha*-dec-osf5.0*, mips-sgi-irix5*,
|
||||||
|
mips-sgi-irix6.[0-4]*.
|
||||||
|
|
||||||
2010-02-02 Nick Clifton <nickc@redhat.com>
|
2010-02-02 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* config/rx/rx.c (rx_is_legitimate_constant): Treat a maximum
|
* config/rx/rx.c (rx_is_legitimate_constant): Treat a maximum
|
||||||
|
|
|
@ -205,16 +205,21 @@ xm_file=
|
||||||
md_file=
|
md_file=
|
||||||
|
|
||||||
# Obsolete configurations.
|
# Obsolete configurations.
|
||||||
#case ${target} in
|
case ${target} in
|
||||||
# )
|
alpha*-dec-osf4* \
|
||||||
# if test "x$enable_obsolete" != xyes; then
|
| alpha*-dec-osf5.0* \
|
||||||
# echo "*** Configuration ${target} is obsolete." >&2
|
| mips-sgi-irix5* \
|
||||||
# echo "*** Specify --enable-obsolete to build it anyway." >&2
|
| mips-sgi-irix6.[0-4]5* \
|
||||||
# echo "*** Support will be REMOVED in the next major release of GCC," >&2
|
| *-*-solaris2.7* \
|
||||||
# echo "*** unless a maintainer comes forward." >&2
|
)
|
||||||
# exit 1
|
if test "x$enable_obsolete" != xyes; then
|
||||||
# fi;;
|
echo "*** Configuration ${target} is obsolete." >&2
|
||||||
#esac
|
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
|
# Unsupported targets list. Do not put an entry in this list unless
|
||||||
# it would otherwise be caught by a more permissive pattern. The list
|
# it would otherwise be caught by a more permissive pattern. The list
|
||||||
|
|
Loading…
Reference in New Issue