aboutsummaryrefslogtreecommitdiff
path: root/bfd/elflink.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2008-08-22 08:32:40 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2008-08-22 08:32:40 +0000
commitb2064611d4230414258b5a3a1e8f49e5b0af2f3f (patch)
treea6dd4bf218ffecc8295d1475b1871fcc2eb724b7 /bfd/elflink.c
parentfec8276095570d58a8d32a0956d831e0e58e4981 (diff)
downloadfsf-binutils-gdb-b2064611d4230414258b5a3a1e8f49e5b0af2f3f.zip
fsf-binutils-gdb-b2064611d4230414258b5a3a1e8f49e5b0af2f3f.tar.gz
fsf-binutils-gdb-b2064611d4230414258b5a3a1e8f49e5b0af2f3f.tar.bz2
bfd/
Fix PR ld/3290 regression for cross-files DW_FORM_ref_addr relocations. * elflink.c (elf_link_add_object_symbols): Make debug symbols local now only for non-RELOCATABLE targets. ld/testsuite/ * ld-x86-64/dwarfreloc.exp, ld-x86-64/dwarfreloc.rd, ld-x86-64/dwarfreloc1.s, ld-x86-64/dwarfreloc2.s: New test.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r--bfd/elflink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c
index ec545f9..010c614 100644
--- a/bfd/elflink.c
+++ b/bfd/elflink.c
@@ -4294,7 +4294,7 @@ elf_link_add_object_symbols (bfd *abfd, struct bfd_link_info *info)
dynsym = TRUE;
}
- if (definition && (sec->flags & SEC_DEBUGGING))
+ if (definition && (sec->flags & SEC_DEBUGGING) && !info->relocatable)
{
/* We don't want to make debug symbol dynamic. */
(*bed->elf_backend_hide_symbol) (info, h, TRUE);