This essentially drops the change by r288021 (discussed with Georgii Rymar and Peter Smith and noted down in the release note of lld 10). GNU ld>=2.31 enables -z separate-code by default for Linux x86. By default (in the absence of a PHDRS command) a readonly PT_LOAD is created, which is different from its traditional behavior. Not emulating GNU ld's traditional behavior is good for us because it improves code consistency (we create a readonly PT_LOAD in the absence of a SECTIONS command). Users can add --no-rosegment to restore the previous behavior (combined readonly and read-executable sections in a single RX PT_LOAD).
26 lines
750 B
ArmAsm
26 lines
750 B
ArmAsm
# REQUIRES: x86
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
|
|
|
# RUN: echo "SECTIONS { .foo 0 : {*(foo)} }" > %t.script
|
|
# RUN: ld.lld --hash-style=sysv -o %t --script %t.script %t.o -shared
|
|
# RUN: llvm-readelf -S -l %t | FileCheck %s
|
|
|
|
# Test that we create all necessary PT_LOAD. We use to stop at the first
|
|
# non-alloc, causing us to not create PT_LOAD for linker generated sections.
|
|
|
|
# CHECK: Program Headers:
|
|
# CHECK-NEXT: Type
|
|
# CHECK-NEXT: LOAD {{.*}} R
|
|
# CHECK-NEXT: LOAD {{.*}} R E
|
|
# CHECK-NEXT: LOAD {{.*}} RW
|
|
|
|
# CHECK: Section to Segment mapping:
|
|
# CHECK-NEXT: Segment Sections...
|
|
# CHECK-NEXT: 00 .dynsym .hash .dynstr
|
|
# CHECK-NEXT: 01 .text
|
|
# CHECK-NEXT: 02 .dynamic
|
|
|
|
nop
|
|
.section foo
|
|
.quad 0
|