PR ld/20828: Work around RISC-V failures

Complement commit 81ff47b3a5 ("PR ld/20828: Fix linker script symbols
wrongly forced local with section GC") and add `.plt' to the list of
output sections created, fixing:

FAIL: PR ld/20828 dynamic symbols with section GC (auxiliary shared library)
FAIL: PR ld/20828 dynamic symbols with section GC (plain)
FAIL: PR ld/20828 dynamic symbols with section GC (version script)

failures with `riscv32-elf', `riscv32-linux', `riscv64-elf' and
`riscv64-linux' targets caused by LD crashing in the absence of such a
section.

	ld/
	PR ld/20828
	* testsuite/ld-elf/pr20828.ld: Add `.plt'.
This commit is contained in:
Maciej W. Rozycki 2017-01-23 11:21:19 +00:00
parent fda46c417f
commit 1e5f45bb15
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2017-01-23 Maciej W. Rozycki <macro@imgtec.com>
PR ld/20828
* testsuite/ld-elf/pr20828.ld: Add `.plt'.
2017-01-23 Maciej W. Rozycki <macro@imgtec.com>
PR ld/20828

View File

@ -13,6 +13,7 @@ SECTIONS
.shstrtab : { *(.shstrtab) }
.symtab : { *(.symtab) }
.strtab : { *(.strtab) }
.plt : { *(.plt) }
.got.plt : { *(.got.plt) }
.got : { *(.got) }
/DISCARD/ : { *(*) }