mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
0709900ede
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.
9 lines
164 B
Plaintext
9 lines
164 B
Plaintext
SECTIONS
|
|
{
|
|
. = 0x1100;
|
|
.rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
|
|
. = 0x1200;
|
|
.data : { *(.data .data.* .gnu.linkonce.d.*) }
|
|
.junk : { *(*) }
|
|
}
|