diff options
author | Ed Schouten <ed@nuxi.nl> | 2015-03-31 11:33:45 +0200 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-03-31 08:11:08 -0700 |
commit | 6036f4862103dea22dcc1ee02cf31802872997b3 (patch) | |
tree | 6dbe5d2dc35825c5fb4f5cd301b12d221d0cd88c /bfd/targets.c | |
parent | 6ef37366be4c2445b3efdba8520e0a4e7450581f (diff) | |
download | gdb-6036f4862103dea22dcc1ee02cf31802872997b3.zip gdb-6036f4862103dea22dcc1ee02cf31802872997b3.tar.gz gdb-6036f4862103dea22dcc1ee02cf31802872997b3.tar.bz2 |
Add support for Nuxi CloudABI on x86-64
bfd/
* config.bfd (targ_defvec): Set to x86_64_elf64_cloudabi_vec
for x86_64-*-cloudabi*.
* configure.ac: Handle x86_64_elf64_cloudabi_vec.
* configure: Regenerated.
* elf64-x86-64.c (TARGET_LITTLE_SYM): Support x86_64-*-cloudabi*.
(TARGET_LITTLE_NAME): Likewise.
(ELF_OSABI): Likewise.
(elf64_bed): Likewise.
* targets.c (x86_64_elf64_cloudabi_vec): New.
(_bfd_target_vector): Add x86_64_elf64_cloudabi_vec.
gas/
* configure.tgt (fmt): Set to elf for *-*-cloudabi*.
ld/
* Makefile.am (ALL_64_EMULATION_SOURCES): Add
eelf_x86_64_cloudabi.c.
(eelf_x86_64_cloudabi.c): New.
* configure.tgt (targ_emul): Set to elf_x86_64_cloudabi for
x86_64-*-cloudabi*.
* Makefile.in: Regenerated.
* emulparams/elf_x86_64_cloudabi.sh: New file.
Diffstat (limited to 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/targets.c b/bfd/targets.c index 9b5458e..2319d23 100644 --- a/bfd/targets.c +++ b/bfd/targets.c @@ -885,6 +885,7 @@ extern const bfd_target x86_64_coff_vec; extern const bfd_target x86_64_elf32_vec; extern const bfd_target x86_64_elf32_nacl_vec; extern const bfd_target x86_64_elf64_vec; +extern const bfd_target x86_64_elf64_cloudabi_vec; extern const bfd_target x86_64_elf64_fbsd_vec; extern const bfd_target x86_64_elf64_nacl_vec; extern const bfd_target x86_64_elf64_sol2_vec; @@ -1402,6 +1403,7 @@ static const bfd_target * const _bfd_target_vector[] = &x86_64_elf32_vec, &x86_64_elf32_nacl_vec, &x86_64_elf64_vec, + &x86_64_elf64_cloudabi_vec, &x86_64_elf64_fbsd_vec, &x86_64_elf64_nacl_vec, &x86_64_elf64_sol2_vec, |