diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-11-09 14:37:16 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-11-09 14:37:16 +0000 |
commit | 57ca8ac797dc72c1949722ab9b11820e3ea8989b (patch) | |
tree | 040805399b147e6849bd4ed74439dd4129918211 /bfd | |
parent | 46b5151381235cc34bdbfab5bfdfd4d4b9d55d42 (diff) | |
download | gdb-57ca8ac797dc72c1949722ab9b11820e3ea8989b.zip gdb-57ca8ac797dc72c1949722ab9b11820e3ea8989b.tar.gz gdb-57ca8ac797dc72c1949722ab9b11820e3ea8989b.tar.bz2 |
Don't return on STT_GNU_IFUNC symbol when stripping.
bfd/
2009-11-09 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10911
* elflink.c (elf_link_output_extsym): Don't return on
STT_GNU_IFUNC symbol when stripping.
ld/testsuite/
2009-11-09 H.J. Lu <hongjiu.lu@intel.com>
PR ld/10911
* ld-ifunc/ifunc-4a-x86.d: New.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 8 | ||||
-rw-r--r-- | bfd/elflink.c | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index e918d6c..03f6773 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2009-11-09 H.J. Lu <hongjiu.lu@intel.com> + + PR ld/10911 + * elflink.c (elf_link_output_extsym): Don't return on + STT_GNU_IFUNC symbol when stripping. + 2009-11-08 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * elf32-hppa.c (elf32_hppa_final_link): Don't sort unwind information @@ -8,7 +14,7 @@ * elflink.c (elf_link_add_object_symbols): Improve error message generated when a symbol is left unresolved because a - --no-add-needed command line option has prevented the + --no-add-needed command line option has prevented the inclusion of the DSO defining it. 2009-11-03 Alan Modra <amodra@bigpond.net.au> diff --git a/bfd/elflink.c b/bfd/elflink.c index cd016b7..0153411 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -8639,9 +8639,11 @@ elf_link_output_extsym (struct elf_link_hash_entry *h, void *data) strip = FALSE; /* If we're stripping it, and it's not a dynamic symbol, there's - nothing else to do unless it is a forced local symbol. */ + nothing else to do unless it is a forced local symbol or a + STT_GNU_IFUNC symbol. */ if (strip && h->dynindx == -1 + && h->type != STT_GNU_IFUNC && !h->forced_local) return TRUE; |