mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 14:53:32 +08:00
15 lines
224 B
Plaintext
15 lines
224 B
Plaintext
|
FORCE_GROUP_ALLOCATION
|
||
|
|
||
|
PHDRS
|
||
|
{
|
||
|
header PT_PHDR PHDRS ;
|
||
|
image PT_LOAD PHDRS;
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x1000;
|
||
|
.text : { *(.text) *(.rodata.brlt) } :image :header
|
||
|
/DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
|
||
|
}
|