diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2016-05-06 08:28:27 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2016-05-06 08:28:27 -0700 |
commit | 030e823caf4243a3337c2134a4a2f38490d3cf3d (patch) | |
tree | 8ebf3495519717b3ebf37ce1323da8a3901af7ff | |
parent | 887cf7913771a045a28b8ce43ed78a9a6c1dd2f0 (diff) | |
download | gdb-030e823caf4243a3337c2134a4a2f38490d3cf3d.zip gdb-030e823caf4243a3337c2134a4a2f38490d3cf3d.tar.gz gdb-030e823caf4243a3337c2134a4a2f38490d3cf3d.tar.bz2 |
Define elf_backend_add_symbol_hook for Intel MCU
elf_backend_add_symbol_hook is undefined for FreeBSD. Define it for
Intel MCU to support STB_GNU_UNIQUE for Intel MCU and NaCl.
* elf32-i386.c (elf_backend_add_symbol_hook): Defined for Intel
MCU.
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-i386.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 093d7f5..c6a51c4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2016-05-06 H.J. Lu <hongjiu.lu@intel.com> + + * elf32-i386.c (elf_backend_add_symbol_hook): Defined for Intel + MCU. + 2016-05-05 H.J. Lu <hongjiu.lu@intel.com> * elf32-i386.c (elf_i386_convert_load): Extract the GOT load diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index 483146b..df08dd4 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -6053,6 +6053,9 @@ elf32_iamcu_elf_object_p (bfd *abfd) #undef elf_backend_strtab_flags #undef elf_backend_copy_special_section_fields +#undef elf_backend_add_symbol_hook +#define elf_backend_add_symbol_hook elf_i386_add_symbol_hook + #include "elf32-target.h" /* Restore defaults. */ |