diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-06-02 21:24:35 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-06-02 21:24:35 +0000 |
commit | 7050286db6c6aeae6a65803a34978ee9e01b5c04 (patch) | |
tree | 3ef3b70f9498345f686f38d8b3809f242b682b03 /bfd/elf32-target.h | |
parent | cef91d759ccb09252c953a954b8d527f176ef247 (diff) | |
download | gdb-7050286db6c6aeae6a65803a34978ee9e01b5c04.zip gdb-7050286db6c6aeae6a65803a34978ee9e01b5c04.tar.gz gdb-7050286db6c6aeae6a65803a34978ee9e01b5c04.tar.bz2 |
elfcode.h
Diffstat (limited to 'bfd/elf32-target.h')
-rw-r--r-- | bfd/elf32-target.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/bfd/elf32-target.h b/bfd/elf32-target.h index e26356a..c18f1b9 100644 --- a/bfd/elf32-target.h +++ b/bfd/elf32-target.h @@ -54,8 +54,19 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ static CONST struct elf32_backend_data elf32_bed = { - elf_info_to_howto, - ELF_ARCH, +#ifdef USE_REL + 0, /* use_rela_p */ +#else + 1, /* use_rela_p */ +#endif + 0, /* elf_64_p */ + ELF_ARCH, /* arch */ + elf_info_to_howto, /* elf_info_to_howto */ +#ifdef elf_info_to_howto_rel + elf_info_to_howto_rel, /* elf_info_to_howto_rel */ +#else + 0, /* elf_info_to_howto_rel */ +#endif }; #ifdef TARGET_BIG_SYM |