blob: 7f3a1b9c2ff9b3f529759d35ebc8de6823d21270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PHDRS {
text PT_LOAD;
}
SECTIONS {
.shstrtab : { *(.shstrtab ) }
.debug_info : { *(.debug_info ) }
.debug_line : { *(.debug_line ) }
.debug_str : { *(.debug_str ) }
.debug_abbrev : { *(.debug_abbrev) }
. = 0x201000;
.text : { *(.text .text.f) } :text
/DISCARD/ : { *(*) }
}
|