* configure.in: Default to --with-stabs for some targets for which

it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
	i[345]86*-*-unixware*.
This commit is contained in:
Ian Lance Taylor 1995-11-28 22:15:27 +00:00
parent fd0198f023
commit 4f0ad91b9b
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Tue Nov 28 17:16:48 1995 Ian Lance Taylor <ian@cygnus.com>
* configure.in: Default to --with-stabs for some targets for which
it makes sense: mips*-*-*, alpha*-*-osf*, i[345]86*-*-sysv4* and
i[345]86*-*-unixware*.
Mon Nov 27 13:44:15 1995 Ian Lance Taylor <ian@cygnus.com>
* config-ml.in: Get list of multidirs using gcc --print-multi-lib

View File

@ -297,6 +297,16 @@ elif [ x${with_newlib} = xyes ]; then
skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'`
fi
# Default to using --with-stabs for certain targets.
if [ x${with_stabs} = x ]; then
case "${target}" in
mips*-*-* | alpha*-*-osf* | i[345]86*-*-sysv4* | i[345]86*-*-unixware*)
with_stabs=yes;
withoptions="${withoptions} --with-stabs"
;;
esac
fi
# Handle ${copy_dirs}
set fnord ${copy_dirs}
shift