diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2018-01-30 00:21:57 +0100 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2018-01-30 00:21:57 +0100 |
commit | 185cdb8cc7c0102140d41fb6272a5ee99994d72d (patch) | |
tree | 4809582a42e1aa16294890ca2ef941725a5cca1d /ld/testsuite/ld-elf | |
parent | d85815e2d16f7c042d7912f1fa85bf1b9c28ca44 (diff) | |
download | binutils-185cdb8cc7c0102140d41fb6272a5ee99994d72d.zip binutils-185cdb8cc7c0102140d41fb6272a5ee99994d72d.tar.gz binutils-185cdb8cc7c0102140d41fb6272a5ee99994d72d.tar.bz2 |
Adjust test for PR ld/22269.
On the SPARC architecture, you need to pass a special flag to GNU as
when you're assembling PIC/PIE code or else you get a wrong relocation
for the GOT symbol.
ld/
* testsuite/ld-elf/shared.exp (AFLAGS_PIC): Define on SPARC.
(pr22269-1): Pass AFLAGS_PIC to the assembler.
Diffstat (limited to 'ld/testsuite/ld-elf')
-rw-r--r-- | ld/testsuite/ld-elf/shared.exp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ld/testsuite/ld-elf/shared.exp b/ld/testsuite/ld-elf/shared.exp index 5c4d78a..9b9cbaa 100644 --- a/ld/testsuite/ld-elf/shared.exp +++ b/ld/testsuite/ld-elf/shared.exp @@ -42,6 +42,10 @@ set AFLAGS_PIC "" if [istarget "tic6x-*-*"] { append AFLAGS_PIC " -mpic -mpid=near" } +if [istarget "sparc*-*-*"] { + append AFLAGS_PIC " -K PIC" +} + # This target requires a non-default emulation for successful shared # library/executable builds. set LFLAGS "" @@ -577,7 +581,7 @@ run_ld_link_tests [list \ "Build pr22269-1" \ "-pie -e _start --no-dynamic-linker -z text" \ "" \ - "" \ + "$AFLAGS_PIC" \ { pr22269-1.c } \ {{readelf -rW pr22269-1.rd}} \ "pr22269-1" \ |