31 lines
279 B
Plaintext
31 lines
279 B
Plaintext
ENTRY(_start)
|
|
|
|
SECTIONS {
|
|
.text ALIGN(4K) : {
|
|
*(.text)
|
|
*(.rodata)
|
|
}
|
|
|
|
.rodata ALIGN(4K) : {
|
|
|
|
}
|
|
|
|
.data ALIGN(4K) : {
|
|
*(.data)
|
|
*(.bss)
|
|
*(.dynamic)
|
|
}
|
|
|
|
.dynamic ALIGN(8) : {
|
|
*(.dynamic)
|
|
}
|
|
|
|
.got.plt ALIGN(4K) : {
|
|
*(.got.plt)
|
|
}
|
|
|
|
/DISCARD/ : {
|
|
*(.interp)
|
|
}
|
|
}
|