2019-03-06 19:44:47 +03:00
|
|
|
PHDRS {
|
|
|
|
text PT_LOAD FLAGS(5); /* R_E */
|
|
|
|
note PT_NOTE FLAGS(0); /* ___ */
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTIONS {
|
|
|
|
. = 0x100000;
|
|
|
|
|
|
|
|
.text : {
|
|
|
|
__load_st = .;
|
|
|
|
*(.head)
|
|
|
|
*(.text)
|
|
|
|
} :text
|
|
|
|
|
|
|
|
.rodata : {
|
|
|
|
*(.rodata)
|
|
|
|
} :text
|
|
|
|
|
2021-10-08 19:21:01 +03:00
|
|
|
/DISCARD/ : {
|
|
|
|
*(.note.gnu*)
|
|
|
|
}
|
|
|
|
|
2019-03-06 19:44:47 +03:00
|
|
|
.notes : {
|
|
|
|
*(.note.*)
|
|
|
|
} :note
|
|
|
|
|
|
|
|
.data : {
|
|
|
|
*(.data)
|
|
|
|
__load_en = .;
|
|
|
|
} :text
|
|
|
|
|
|
|
|
.bss : {
|
|
|
|
*(.bss)
|
|
|
|
__bss_en = .;
|
|
|
|
}
|
|
|
|
}
|