diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2012-06-17 07:28:29 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2012-06-17 07:28:29 +0000 |
commit | 26a48bb3a9c962068b83ff38b0818956c961da74 (patch) | |
tree | b843a95c3803d4d80022705c4d08cf1e58d21a19 /bfd | |
parent | c5753f6406be13320c7740038e9662a87afdcb84 (diff) | |
download | gdb-26a48bb3a9c962068b83ff38b0818956c961da74.zip gdb-26a48bb3a9c962068b83ff38b0818956c961da74.tar.gz gdb-26a48bb3a9c962068b83ff38b0818956c961da74.tar.bz2 |
* elf32-cris.c (cris_elf_relocate_section): <R_CRIS_32_IE>
<R_CRIS_32_GOT_TPREL, R_CRIS_16_GOT_TPREL>: Handle references to
thread common symbols.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 6 | ||||
-rw-r--r-- | bfd/elf32-cris.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 41e6264..39f5829 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2012-06-17 Hans-Peter Nilsson <hp@axis.com> + + * elf32-cris.c (cris_elf_relocate_section): <R_CRIS_32_IE> + <R_CRIS_32_GOT_TPREL, R_CRIS_16_GOT_TPREL>: Handle references to + thread common symbols. + 2012-06-13 Nick Clifton <nickc@redhat.com> * elf32-arm.c (bfd_arm_get_mach_from_attributes): New function. diff --git a/bfd/elf32-cris.c b/bfd/elf32-cris.c index 1f7d20d..3710d47 100644 --- a/bfd/elf32-cris.c +++ b/bfd/elf32-cris.c @@ -1877,7 +1877,8 @@ cris_elf_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED, return FALSE; } - if (!info->shared && (h == NULL || h->def_regular)) + if (!info->shared + && (h == NULL || h->def_regular || ELF_COMMON_DEF_P (h))) { /* Known contents of the GOT. */ bfd_vma off; |