diff options
author | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2002-11-28 08:37:14 +0000 |
---|---|---|
committer | Kaz Kojima <kkojima@rr.iij4u.or.jp> | 2002-11-28 08:37:14 +0000 |
commit | c72cde6d6482ff6c2d7266a0370fc2129b949380 (patch) | |
tree | f13db17b1132bbba6033ebdc581dc2dc72e547d5 /bfd | |
parent | 87478dfed0d11f4b752e5f095426ecd7c24407d4 (diff) | |
download | gdb-c72cde6d6482ff6c2d7266a0370fc2129b949380.tar.gz |
* elf32-sh.c (sh_elf_relocate_section): Don't complain about
unresolved debugging relocs in dynamic applications.
* elf64-sh64.c (sh_elf64_relocate_section): Likewise.
* ld-sh/refdbg-0-dso.d: New test.
* ld-sh/refdbg-1.d: Likewise.
* ld-sh/refdbg.s: Likewise.
* ld-sh/refdbglib.s: Likewise.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf32-sh.c | 7 | ||||
-rw-r--r-- | bfd/elf64-sh64.c | 9 |
3 files changed, 21 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1823e3a8379..f0b8dc68352 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2002-11-28 Kaz Kojima <kkojima@rr.iij4u.or.jp> + + * elf32-sh.c (sh_elf_relocate_section): Don't complain about + unresolved debugging relocs in dynamic applications. + * elf64-sh64.c (sh_elf64_relocate_section): Likewise. + 2002-11-26 Alan Modra <amodra@bigpond.net.au> * elf-eh-frame.c (ENSURE_NO_RELOCS): Disregard R_*_NONE relocs. diff --git a/bfd/elf32-sh.c b/bfd/elf32-sh.c index f52245bcc34..c7c078ceaf4 100644 --- a/bfd/elf32-sh.c +++ b/bfd/elf32-sh.c @@ -4753,6 +4753,13 @@ sh_elf_relocate_section (output_bfd, info, input_bfd, input_section, || ((input_section->flags & SEC_DEBUGGING) != 0 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0))) + /* Dynamic relocs are not propagated for SEC_DEBUGGING + sections because such sections are not SEC_ALLOC and + thus ld.so will not process them. */ + || (sec->output_section == NULL + && ((input_section->flags & SEC_DEBUGGING) != 0 + && (h->elf_link_hash_flags + & ELF_LINK_HASH_DEF_DYNAMIC) != 0)) || (sec->output_section == NULL && (sh_elf_hash_entry (h)->tls_type == GOT_TLS_IE || sh_elf_hash_entry (h)->tls_type == GOT_TLS_GD))) diff --git a/bfd/elf64-sh64.c b/bfd/elf64-sh64.c index da02505d5c5..590c13369cd 100644 --- a/bfd/elf64-sh64.c +++ b/bfd/elf64-sh64.c @@ -1680,7 +1680,14 @@ sh_elf64_relocate_section (output_bfd, info, input_bfd, input_section, sections against symbols defined externally in shared libraries. We can't do anything with them here. */ - || (input_section->flags & SEC_DEBUGGING) != 0))) + || (input_section->flags & SEC_DEBUGGING) != 0)) + /* Dynamic relocs are not propagated for SEC_DEBUGGING + sections because such sections are not SEC_ALLOC and + thus ld.so will not process them. */ + || (sec->output_section == NULL + && ((input_section->flags & SEC_DEBUGGING) != 0 + && (h->elf_link_hash_flags + & ELF_LINK_HASH_DEF_DYNAMIC) != 0))) relocation = 0; else if (sec->output_section == NULL) { |