From 4f0ad91b9b7e87e9eb207e6d4dc89a8532bfb46c Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 28 Nov 1995 22:15:27 +0000 Subject: [PATCH] * 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*. --- ChangeLog | 6 ++++++ configure.in | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/ChangeLog b/ChangeLog index fcba19e..dd654f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Nov 28 17:16:48 1995 Ian Lance Taylor + + * 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 * config-ml.in: Get list of multidirs using gcc --print-multi-lib diff --git a/configure.in b/configure.in index 7e8eb3c..7d20610 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.7.4