aboutsummaryrefslogtreecommitdiff
path: root/ld/ChangeLog
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@gcc.gnu.org>2018-01-25 12:16:06 +0100
committerEric Botcazou <ebotcazou@gcc.gnu.org>2018-01-25 12:16:06 +0100
commitbb363086e7743506d78bc6b1e56face0fb1fc93f (patch)
tree727ee3a49b87274a9c621005a7f24350edff9dba /ld/ChangeLog
parent3e53a58e1f557f9b799506b62ac1cbf456b34647 (diff)
downloadgdb-bb363086e7743506d78bc6b1e56face0fb1fc93f.zip
gdb-bb363086e7743506d78bc6b1e56face0fb1fc93f.tar.gz
gdb-bb363086e7743506d78bc6b1e56face0fb1fc93f.tar.bz2
Fix PR ld/22727 (TLS breakage in PIC/PIE mode on SPARC).
There are actually 2 different bugs: 1. TLS transition is broken in PIE mode. 2. TLS is broken in PIC/PIE mode when the __tls_get_addr symbol is versioned (as is the case on Linux and Solaris at least). The 1st bug is fixed by reverting the problematic change for now (note that the associated test doesn't pass on SPARC because of another issue so there is no formal regression in the testsuite). The 2nd bug is fixed by changing the call to _bfd_generic_link_add_one_symbol on __tls_get_addr into a mere lookup in _bfd_sparc_elf_check_relocs. bfd/ * elfxx-sparc.c (_bfd_sparc_elf_check_relocs) <R_SPARC_TLS_GD_CALL>: Do a mere lookup of the __tls_get_addr symbol instead of adding it. Revert 2017-10-19 H.J. Lu <hongjiu.lu@intel.com> PR ld/22263 * elfxx-sparc.c (sparc_elf_tls_transition): Replace bfd_link_pic with !bfd_link_executable, !bfd_link_pic with bfd_link_executable for TLS check. (_bfd_sparc_elf_check_relocs): Likewise. (allocate_dynrelocs): Likewise. (_bfd_sparc_elf_relocate_section): Likewise. ld/ * testsuite/ld-sparc/sparc.exp (32-bit: Helper shared library): Link with a version script. (32-bit: TLS -fpie): New test. (64-bit: Helper shared library): Link with a version script. (64-bit: TLS -fpie): New test. (64-bit: GOTDATA relocations): Pass -Av9 to the assembler. * testsuite/ld-sparc/tlslib.ver: New file. * testsuite/ld-sparc/tlspie32.dd: Likewise. * testsuite/ld-sparc/tlspie32.s: Likewise. * testsuite/ld-sparc/tlspie64.dd: Likewise. * testsuite/ld-sparc/tlspie64.s: Likewise. * testsuite/ld-sparc/tlssunbin32.dd: Adjust for versioned symbol. * testsuite/ld-sparc/tlssunbin32.rd: Likewise. * testsuite/ld-sparc/tlssunbin32.sd: Likewise. * testsuite/ld-sparc/tlssunbin64.dd: Likewise. * testsuite/ld-sparc/tlssunbin64.rd: Likewise. * testsuite/ld-sparc/tlssunbin64.sd: Likewise.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r--ld/ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 5271a6a..b641638 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,23 @@
+2018-01-25 Eric Botcazou <ebotcazou@adacore.com>
+
+ * testsuite/ld-sparc/sparc.exp (32-bit: Helper shared library):
+ Link with a version script.
+ (32-bit: TLS -fpie): New test.
+ (64-bit: Helper shared library): Link with a version script.
+ (64-bit: TLS -fpie): New test.
+ (64-bit: GOTDATA relocations): Pass -Av9 to the assembler.
+ * testsuite/ld-sparc/tlslib.ver: New file.
+ * testsuite/ld-sparc/tlspie32.dd: Likewise.
+ * testsuite/ld-sparc/tlspie32.s: Likewise.
+ * testsuite/ld-sparc/tlspie64.dd: Likewise.
+ * testsuite/ld-sparc/tlspie64.s: Likewise.
+ * testsuite/ld-sparc/tlssunbin32.dd: Adjust for versioned symbol.
+ * testsuite/ld-sparc/tlssunbin32.rd: Likewise.
+ * testsuite/ld-sparc/tlssunbin32.sd: Likewise.
+ * testsuite/ld-sparc/tlssunbin64.dd: Likewise.
+ * testsuite/ld-sparc/tlssunbin64.rd: Likewise.
+ * testsuite/ld-sparc/tlssunbin64.sd: Likewise.
+
2018-01-24 Renlin Li <renlin.li@arm.com>
* testsuite/ld-aarch64/aarch64-elf.exp: Run new testes.