diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-06-16 18:44:50 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2003-06-16 18:44:50 +0000 |
commit | 5ab481e097ce751f0ed4b344b620ba14f33d17d1 (patch) | |
tree | 0ae36b684241fdde464a1be1616c19cb6b1240fa /libstdc++-v3/configure.host | |
parent | 7f42b6d7188f58cdb6450487d4c0037c831350bc (diff) | |
download | gcc-5ab481e097ce751f0ed4b344b620ba14f33d17d1.tar.gz |
[multiple changes]
2003-06-16 Andreas Jaeger <aj@suse.de>
* acinclude.m4 (GLIBCPP_CONFIGURE_TESTSUITE): Make
check-abi multilib aware.
* aclocal.m4: Regenerate.
* configure: Regenerate.
2003-06-16 Benjamin Kosnik <bkoz@redhat.com>
Andreas Jaeger <aj@suse.de>
* configure.host: Set x86_64 abi_baseline pair correctly.
From-SVN: r68029
Diffstat (limited to 'libstdc++-v3/configure.host')
-rw-r--r-- | libstdc++-v3/configure.host | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/libstdc++-v3/configure.host b/libstdc++-v3/configure.host index 98c0b606f61..aaaf932ecb2 100644 --- a/libstdc++-v3/configure.host +++ b/libstdc++-v3/configure.host @@ -97,23 +97,12 @@ case "${host_cpu}" in ;; esac - -# Now look for the file(s) usually tied to a CPU model, and make default -# choices for those if they haven't been explicitly set already. -cpu_include_dir="cpu/${try_cpu}" +# Now look for the file(s) usually tied to a CPU model, and make +# default choices for those if they haven't been explicitly set +# already. +cpu_include_dir="cpu/${try_cpu}" ATOMICITYH=$cpu_include_dir - - -# Check whether ABI baseline file exists, if not try to guess name. abi_baseline_pair=${try_cpu}-${host_os} -try_baseline_file=config/abi/${abi_baseline_pair}/baseline_symbols.txt -if test ! -e ${glibcpp_srcdir}/${try_baseline_file} ; then - case "${host}" in - i*86-*-freebsd4*) - abi_baseline_pair="i386-freebsd4" - ;; - esac -fi # Set any OS-dependent bits. @@ -199,4 +188,10 @@ case "${host}" in mips*-*-linux*) ATOMICITYH="cpu/mips" ;; + x86_64-*-linux*) + abi_baseline_pair="x86_64-linux-gnu" + ;; + i*86-*-freebsd4*) + abi_baseline_pair="i386-freebsd4" + ;; esac |