diff options
author | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-31 21:08:22 +0000 |
---|---|---|
committer | hjl <hjl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-03-31 21:08:22 +0000 |
commit | d09a689d1341a0c34dbd0dbca617ec316f4a7f2f (patch) | |
tree | 65ee2b40d2b75e8edb653d502b5600fb19b05a01 /libgomp | |
parent | f4b5bb69c2a34d5c5a9005fbe7c87d2936345296 (diff) | |
download | gcc-d09a689d1341a0c34dbd0dbca617ec316f4a7f2f.tar.gz |
Handle -mx32 like -m64
libgomp/
2012-03-31 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/52812
* configure.tgt (i[456]86-*-linux*): Handle -mx32 like -m64.
libitm/
2012-03-31 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/52812
* configure.tgt (i[456]86-*-linux*): Handle -mx32 like -m64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/configure.tgt | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 5bed2c69d50..66321424d45 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2012-03-31 H.J. Lu <hongjiu.lu@intel.com> + + PR bootstrap/52812 + * configure.tgt (i[456]86-*-linux*): Handle -mx32 like -m64. + 2012-03-22 Jakub Jelinek <jakub@redhat.com> PR middle-end/52547 diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt index 09cab5177ed..d5a1480e481 100644 --- a/libgomp/configure.tgt +++ b/libgomp/configure.tgt @@ -59,7 +59,7 @@ if test $enable_linux_futex = yes; then i[456]86-*-linux*) config_path="linux/x86 linux posix" case " ${CC} ${CFLAGS} " in - *" -m64 "*) + *" -m64 "*|*" -mx32 "*) ;; *) if test -z "$with_arch"; then |