diff options
author | Alan Modra <amodra@gmail.com> | 2011-11-08 13:49:11 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-11-08 13:49:11 +0000 |
commit | 409ff343a402799563f71f938138b29f8baf7a1c (patch) | |
tree | c7837a3807dfb04ce6ab84516aa1629be0f8e0a6 /bfd/elflink.c | |
parent | 560c8763d325c11cf9cd29c54c55a653f780845a (diff) | |
download | gdb-409ff343a402799563f71f938138b29f8baf7a1c.zip gdb-409ff343a402799563f71f938138b29f8baf7a1c.tar.gz gdb-409ff343a402799563f71f938138b29f8baf7a1c.tar.bz2 |
* elflink.c (bfd_elf_gc_mark_dynamic_ref_symbol): Mark syms in
executables when export_dynamic.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 4f55d9a..1dab6a3 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -11947,7 +11947,7 @@ bfd_elf_gc_mark_dynamic_ref_symbol (struct elf_link_hash_entry *h, void *inf) if ((h->root.type == bfd_link_hash_defined || h->root.type == bfd_link_hash_defweak) && (h->ref_dynamic - || (!info->executable + || ((!info->executable || info->export_dynamic) && h->def_regular && ELF_ST_VISIBILITY (h->other) != STV_INTERNAL && ELF_ST_VISIBILITY (h->other) != STV_HIDDEN |