blob: 53e279035636c39194d87590f426bef7328ed851 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
PHDRS
{
header PT_PHDR PHDRS ;
image PT_LOAD PHDRS;
}
SECTIONS
{
. = 0x1000;
.text : { *(.text) *(.rodata.brlt) } :image :header
/DISCARD/ : { *(.dropme) *(.reginfo) *(.MIPS.abiflags) }
}
|