diff options
author | Matthias Klose <doko@debian.org> | 2007-04-16 20:09:40 +0000 |
---|---|---|
committer | Matthias Klose <doko@gcc.gnu.org> | 2007-04-16 20:09:40 +0000 |
commit | b3b08ba044f1e1c1f69047a7a7c023181aaf71c1 (patch) | |
tree | 6aa632189c826787ca91e8b9e62b562488d45aa5 /libgomp/configure.tgt | |
parent | 52d412e76f503ec4f2911a2582a53e524a70dbf6 (diff) | |
download | gcc-b3b08ba044f1e1c1f69047a7a7c023181aaf71c1.tar.gz |
configure.tgt (i[456]86-*-linux*): Only add ia32 specific flags if not building with -m64.
2007-04-16 Matthias Klose <doko@debian.org>
* configure.tgt (i[456]86-*-linux*): Only add ia32 specific
flags if not building with -m64.
* testsuite/lib/libgomp-dg.exp (libgomp_init): Don't add -march
flag for i?86-*-* targets, if current target matches -m64.
From-SVN: r123887
Diffstat (limited to 'libgomp/configure.tgt')
-rw-r--r-- | libgomp/configure.tgt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt index 89bae02e80a..4790d66d8c6 100644 --- a/libgomp/configure.tgt +++ b/libgomp/configure.tgt @@ -49,9 +49,14 @@ if test $enable_linux_futex = yes; then # Note that bare i386 is not included here. We need cmpxchg. i[456]86-*-linux*) config_path="linux/x86 linux posix" - if test -z "$with_arch"; then - XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}" - fi + case " ${CC} ${CFLAGS} " in + *" -m64 "*) + ;; + *) + if test -z "$with_arch"; then + XCFLAGS="${XCFLAGS} -march=i486 -mtune=${target_cpu}" + fi + esac ;; # Similar jiggery-pokery for x86_64 multilibs, except here we |