summaryrefslogtreecommitdiff
path: root/ld/plugin.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2013-02-16 17:54:35 +0000
committerH.J. Lu <hjl.tools@gmail.com>2013-02-16 17:54:35 +0000
commit000458d5b04ef11d19dbc5eda3f33eaba3fa3a71 (patch)
tree3ddbf7976f409c3a89528fc5e5e56bdf16bb636c /ld/plugin.c
parentd69670d501f1b6a4d587f6108b1a462ace4cc376 (diff)
downloadbinutils-redhat-000458d5b04ef11d19dbc5eda3f33eaba3fa3a71.tar.gz
Don't add DT_NEEDED for references from the dummy bfd
bfd/ PR ld/15146 * elflink.c (elf_link_add_object_symbols): Don't add DT_NEEDED for references from the dummy bfd. ld/ PR ld/15146 * plugin.c (plugin_notice): Replace the undefined dummy bfd with the real one. ld/testsuite/ PR ld/15146 * ld-plugin/pr15146.d: New file. * ld-plugin/pr15146a.c: Likewise. * ld-plugin/pr15146b.c: Likewise. * ld-plugin/pr15146c.c: Likewise. * ld-plugin/pr15146d.c: Likewise. * ld-plugin/lto.exp: Add tests for PR ld/15146.
Diffstat (limited to 'ld/plugin.c')
-rw-r--r--ld/plugin.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/ld/plugin.c b/ld/plugin.c
index 435f4663b2..d880164ded 100644
--- a/ld/plugin.c
+++ b/ld/plugin.c
@@ -993,7 +993,14 @@ plugin_notice (struct bfd_link_info *info,
/* If this is a ref, set non_ir_ref. */
else if (bfd_is_und_section (section))
- h->non_ir_ref = TRUE;
+ {
+ /* Replace the undefined dummy bfd with the real one. */
+ if ((h->type == bfd_link_hash_undefined
+ || h->type == bfd_link_hash_undefweak)
+ && (h->u.undef.abfd->flags & BFD_PLUGIN) != 0)
+ h->u.undef.abfd = abfd;
+ h->non_ir_ref = TRUE;
+ }
/* Otherwise, it must be a new def. Ensure any symbol defined
in an IR dummy BFD takes on a new value from a real BFD.