mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 10:54:07 +08:00
Add x32 support to libtool.m4
Merge upstream change * libtool.m4 (_LT_ENABLE_LOCK): Support x32. From-SVN: r187546
This commit is contained in:
parent
64137a35b5
commit
eb60659578
@ -1,3 +1,8 @@
|
||||
2012-05-15 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
Merge upstream change
|
||||
* libtool.m4 (_LT_ENABLE_LOCK): Support x32.
|
||||
|
||||
2012-05-14 Marc Glisse <marc.glisse@inria.fr>
|
||||
|
||||
* MAINTAINERS (Write After Approval): Add myself.
|
||||
|
9
libtool.m4
vendored
9
libtool.m4
vendored
@ -1232,7 +1232,14 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
|
||||
LD="${LD-ld} -m elf_i386_fbsd"
|
||||
;;
|
||||
x86_64-*linux*)
|
||||
LD="${LD-ld} -m elf_i386"
|
||||
case `/usr/bin/file conftest.o` in
|
||||
*x86-64*)
|
||||
LD="${LD-ld} -m elf32_x86_64"
|
||||
;;
|
||||
*)
|
||||
LD="${LD-ld} -m elf_i386"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
ppc64-*linux*|powerpc64-*linux*)
|
||||
LD="${LD-ld} -m elf32ppclinux"
|
||||
|
Loading…
Reference in New Issue
Block a user