aboutsummaryrefslogtreecommitdiff
path: root/gas/configure.tgt
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2011-06-19 21:22:16 +0000
committerH.J. Lu <hjl.tools@gmail.com>2011-06-19 21:22:16 +0000
commit8b7789423cab57f0adc2a1cb374908d73a2f64b8 (patch)
treee49f5da057439b85bde420ebbc4d7b4c8b7bbada /gas/configure.tgt
parentbe47d07c7216009d8edfe2260e2389d4895646f8 (diff)
downloadgdb-8b7789423cab57f0adc2a1cb374908d73a2f64b8.zip
gdb-8b7789423cab57f0adc2a1cb374908d73a2f64b8.tar.gz
gdb-8b7789423cab57f0adc2a1cb374908d73a2f64b8.tar.bz2
Fix misc x32 bugs.
bfd/ 2011-06-19 H.J. Lu <hongjiu.lu@intel.com> * elf64-x86-64.c (elf_backend_post_process_headers): Defined for x32. binutils/testsuite/ 2011-06-19 H.J. Lu <hongjiu.lu@intel.com> * binutils-all/elfedit-1.d: Updated for x32. gas/ 2011-06-19 H.J. Lu <hongjiu.lu@intel.com> * configure.tgt: Support x32. ld/ 2011-06-19 H.J. Lu <hongjiu.lu@intel.com> * configure.tgt: Support x32. ld/testsuite/ 2011-06-19 H.J. Lu <hongjiu.lu@intel.com> * ld-elf/eh1.d: Skip x32. * ld-elf/eh2.d: Likewise. * ld-elf/eh3.d: Likewise. * ld-elf/eh4.d: Likewise. * ld-elfvsb/elfvsb.exp: Only xfail 64bit x86_64-*-linux*. * ld-shared/shared.exp: Likewise. * ld-ifunc/ifunc-1-local-x86.d: Support x32. * ld-ifunc/ifunc-1-x86.d: Likewise. * ld-ifunc/ifunc-3a-x86.d: Likewise. * ld-x86-64/pcrel16.d: Likewise. * ld-x86-64/x86-64.exp (x86_64tests): Add missing -melf_x86_64.
Diffstat (limited to 'gas/configure.tgt')
-rw-r--r--gas/configure.tgt9
1 files changed, 8 insertions, 1 deletions
diff --git a/gas/configure.tgt b/gas/configure.tgt
index a171a32..7f7f611 100644
--- a/gas/configure.tgt
+++ b/gas/configure.tgt
@@ -81,7 +81,14 @@ case ${cpu} in
sparclite*) cpu_type=sparc arch=sparclite ;;
sparc*) cpu_type=sparc arch=sparclite ;; # ??? See tc-sparc.c.
v850*) cpu_type=v850 ;;
- x86_64*) cpu_type=i386 arch=x86_64;;
+ x86_64*)
+ cpu_type=i386
+ if [ x"$vendor" = xx32 ]; then
+ arch=x86_64:32
+ else
+ arch=x86_64
+ fi
+ ;;
xtensa*) cpu_type=xtensa arch=xtensa ;;
*) cpu_type=${cpu} ;;
esac