binutils-gdb/ld/testsuite/ld-elf/merge.ld
Alan Modra 0709900ede ld-elf/merge test update
The merge test fais on numerous targets because they don't support the
necessary pc-relative relocs.  This patch removes that part of the
merge test, and makes references to the merged strings from .data
rather than .text to better support targets that relax text by
default.
2023-02-02 13:40:14 +10:30

9 lines
164 B
Plaintext

SECTIONS
{
. = 0x1100;
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
. = 0x1200;
.data : { *(.data .data.* .gnu.linkonce.d.*) }
.junk : { *(*) }
}