16 lines
469 B
Text
16 lines
469 B
Text
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
.text : { *(.text .text.*) }
|
|
.data : { *(.data .data.*) }
|
|
.bss : { *(.bss .bss.*) *(COMMON) }
|
|
.sbss : { *(.sbss .sbss.*) }
|
|
.note : { *(.note .note.*) }
|
|
.rela : { *(.rela .rela.*) }
|
|
.rel : { *(.rel .rel.*) }
|
|
|
|
/DISCARD/ : {
|
|
*(.reginfo) *(.MIPS.abiflags) *(.MIPS.options) *(.trampolines)
|
|
*(.iplt*) *(.note*) *(.got*) *(.igot*) *(.*.attributes) *(.*.info)
|
|
*(.pdr) "linker stubs*"(*) }
|
|
}
|