Currently when we build input sections list in linker script
we ignore all rel[a] sections. That was done to support
scripts like .rela.dyn : { *(.rela.data) } for emit relocs.
Though as a result following scripts were also silently ignored:
/DISCARD/ : { *(.rela.plt)
/DISCARD/ : { *(.rela.dyn)
and we produced output with this sections. That is not ideal.
The solution this patch suggests is simple: do not ignore synthetic
rel[a] sections. That way we can enable common discarding logic
for them and report a proper error.
Differential revision: https://reviews.llvm.org/D41640
llvm-svn: 328419
36 lines
1.4 KiB
ArmAsm
36 lines
1.4 KiB
ArmAsm
# REQUIRES: x86
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.shstrtab) } }" > %t.script
|
|
# RUN: not ld.lld -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=SHSTRTAB %s
|
|
# SHSTRTAB: discarding .shstrtab section is not allowed
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.dynamic) } }" > %t.script
|
|
# RUN: not ld.lld -pie -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=DYNAMIC %s
|
|
# DYNAMIC: discarding .dynamic section is not allowed
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.dynsym) } }" > %t.script
|
|
# RUN: not ld.lld -pie -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=DYNSYM %s
|
|
# DYNSYM: discarding .dynsym section is not allowed
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.dynstr) } }" > %t.script
|
|
# RUN: not ld.lld -pie -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=DYNSTR %s
|
|
# DYNSTR: discarding .dynstr section is not allowed
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.rela.plt) } }" > %t.script
|
|
# RUN: not ld.lld -pie -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=RELAPLT %s
|
|
# RELAPLT: discarding .rela.plt section is not allowed
|
|
|
|
# RUN: echo "SECTIONS { /DISCARD/ : { *(.rela.dyn) } }" > %t.script
|
|
# RUN: not ld.lld -pie -o %t --script %t.script %t.o 2>&1 | \
|
|
# RUN: FileCheck -check-prefix=RELADYN %s
|
|
# RELADYN: discarding .rela.dyn section is not allowed
|
|
|
|
.comm foo,4,4
|