diff options
author | Roland McGrath <roland@gnu.org> | 2012-03-16 23:19:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2012-03-16 23:19:47 +0000 |
commit | 8059fb196eecc90ab0dc7ecabd913690d08baee9 (patch) | |
tree | 5dd79259d1a5fe29aaa0d0f9d8cb607e0c46abe6 /gas/configure.tgt | |
parent | b2ecfddf1c708dd271843a1daf1b45d9f36a4238 (diff) | |
download | gdb-8059fb196eecc90ab0dc7ecabd913690d08baee9.zip gdb-8059fb196eecc90ab0dc7ecabd913690d08baee9.tar.gz gdb-8059fb196eecc90ab0dc7ecabd913690d08baee9.tar.bz2 |
bfd/
2012-03-16 Roland McGrath <mcgrathr@google.com>
* config.bfd: Handle x86_64-*-nacl*.
* elf64-x86-64.c (bfd_elf64_x86_64_nacl_vec): New backend vector stanza.
(bfd_elf32_x86_64_nacl_vec): Likewise.
* targets.c: Support them.
* configure.in: Likewise.
* configure: Regenerated.
gas/
2012-03-16 Roland McGrath <mcgrathr@google.com>
* config/tc-i386.h [TE_NACL] (ELF_TARGET_FORMAT32, ELF_TARGET_FORMAT64):
Define for this case.
* configure.tgt (i386-*-nacl*): If ${cpu} is x86_64*, default to x32.
Diffstat (limited to 'gas/configure.tgt')
-rw-r--r-- | gas/configure.tgt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/configure.tgt b/gas/configure.tgt index 06fb6ca..99a276f 100644 --- a/gas/configure.tgt +++ b/gas/configure.tgt @@ -183,7 +183,10 @@ case ${generic_target} in i386-*-elf) fmt=elf ;; i386-*-kaos*) fmt=elf ;; i386-*-bsd*) fmt=aout em=386bsd ;; - i386-*-nacl*) fmt=elf em=nacl ;; + i386-*-nacl*) fmt=elf em=nacl + case ${cpu} in + x86_64*) arch=x86_64:32 ;; + esac ;; i386-*-netbsd0.8) fmt=aout em=386bsd ;; i386-*-netbsdpe*) fmt=coff em=pe ;; i386-*-netbsd*-gnu* | \ |