blob: 952c8d2d8908ec83401ca4c9ace2810f3297dc56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
SECTIONS
{
.rodata :
{
BYTE(0)
*(.rodata*)
BYTE(4)
*(.rosection)
BYTE(7)
}
.text : {*(.text.bar) *(.text.foo)}
/DISCARD/ :
{
*(.reginfo) *(.MIPS.abiflags) *(.MIPS.options) *(.trampolines)
}
}
|