10 lines
222 B
Text
10 lines
222 B
Text
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
.sbss : { *(.sbss) }
|
|
.note : { *(.note) }
|
|
/DISCARD/ : { *(.reginfo) *(.MIPS.abiflags) *(.trampolines) }
|
|
}
|