From 34897d396108b274afb944d68b1f3379e2cb4ff8 Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Thu, 7 Nov 2002 13:28:04 +0000 Subject: [PATCH] * elf32-cris.c (cris_elf_relocate_section) : Correct test for filling in constant .got contents, enabling for a non-DSO, for symbols defined in the program with --export-dynamic. --- bfd/ChangeLog | 7 +++++++ bfd/elf32-cris.c | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d97edd235..941da8a28 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +2002-11-07 Hans-Peter Nilsson + + * elf32-cris.c (cris_elf_relocate_section) : Correct test for filling in constant .got + contents, enabling for a non-DSO, for symbols defined in the + program with --export-dynamic. + 2002-11-07 Alan Modra * elf64-ppc.c: Comment typo fixes. diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c index 8eff52dd5..dfbdbe75f 100644 --- a/bfd/elf32-cris.c +++ b/bfd/elf32-cris.c @@ -1022,7 +1022,8 @@ cris_elf_relocate_section (output_bfd, info, input_bfd, input_section, BFD_ASSERT (off != (bfd_vma) -1); if (!elf_hash_table (info)->dynamic_sections_created - || (! info->shared && h->dynindx == -1) + || (! info->shared + && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR)) || (info->shared && (info->symbolic || h->dynindx == -1) && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR))) -- 2.11.4.GIT