From 96f29d96afbe3e6835d75146a556f148688a5464 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Fri, 22 Mar 2013 23:35:55 +0000 Subject: [PATCH] PR ld/15270 * elflink.c (elf_link_add_object_symbols): Don't set def_regular or ref_regular for BFD_PLUGIN owned syms, or have them affect def_dynamic/ref_dynamic. (_bfd_elf_fix_symbol_flags): Don't set def_regular for BFD_PLUGIN owned syms. --- bfd/ChangeLog | 9 +++++++++ bfd/elflink.c | 13 +++++++------ 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a57684db5c4..16b2b1ba534 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +2013-03-23 Alan Modra + + PR ld/15270 + * elflink.c (elf_link_add_object_symbols): Don't set def_regular + or ref_regular for BFD_PLUGIN owned syms, or have them affect + def_dynamic/ref_dynamic. + (_bfd_elf_fix_symbol_flags): Don't set def_regular for BFD_PLUGIN + owned syms. + 2013-03-22 David S. Miller * elfxx-sparc.c (_bfd_sparc_elf_merge_private_bfd_data): Set type of diff --git a/bfd/elflink.c b/bfd/elflink.c index fa805bce213..be53ca3f9de 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -2491,7 +2491,7 @@ _bfd_elf_fix_symbol_flags (struct elf_link_hash_entry *h, && !h->def_regular && h->ref_regular && !h->def_dynamic - && (h->root.u.def.section->owner->flags & DYNAMIC) == 0) + && (h->root.u.def.section->owner->flags & (DYNAMIC | BFD_PLUGIN)) == 0) h->def_regular = 1; /* If -Bsymbolic was used (which means to bind references to global @@ -4361,7 +4361,12 @@ error_free_dyn: is one which is referenced or defined by both a regular object and a shared object. */ dynsym = FALSE; - if (! dynamic) + + /* Plugin symbols aren't normal. Don't set def_regular or + ref_regular for them, nor make them dynamic. */ + if ((abfd->flags & BFD_PLUGIN) != 0) + ; + else if (! dynamic) { if (! definition) { @@ -4415,10 +4420,6 @@ error_free_dyn: if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable) dynsym = FALSE; - /* Nor should we make plugin symbols dynamic. */ - if ((abfd->flags & BFD_PLUGIN) != 0) - dynsym = FALSE; - if (definition) { h->target_internal = isym->st_target_internal; -- 2.30.2