mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
b90e0b2f1b
The updates are to ensure that the .data section exists. This means that we always have a data section. That means that we don't create a RWX segment and avoid the corresponding warning. We get this warning when testing aarch64-none-elf with -mcmodel=tiny. N.b. this changes quite a few testcases from fail to pass.
24 lines
626 B
Plaintext
24 lines
626 B
Plaintext
/* Script for ld testsuite */
|
|
OUTPUT_ARCH(aarch64)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
/* Read-only sections, merged into text segment: */
|
|
PROVIDE (__executable_start = 0x8000); . = 0x10000;
|
|
.text :
|
|
{
|
|
*(.before)
|
|
*(.text)
|
|
*(.after)
|
|
} =0
|
|
. = 0x20000;
|
|
.got : { *(.got) *(.got.plt)}
|
|
. = 0x12340000;
|
|
.far : { *(.far) }
|
|
.ARM.attributes 0 : { *(.ARM.atttributes) }
|
|
/* Providing a .data section triggers a non-executable segment to be
|
|
generated, which gives somewhere else for the linker to put the TLS
|
|
segment without creating a RWX permissioned one. */
|
|
.data : { *(.data) }
|
|
}
|