You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
330 B
23 lines
330 B
12 months ago
|
|
||
|
SECTIONS {
|
||
|
/DISCARD/ : {
|
||
|
*(.eh_frame)
|
||
|
}
|
||
|
.bss : {
|
||
|
*(.bss .bss.[0-9a-zA-Z_]*)
|
||
|
*(.bss..L*)
|
||
|
}
|
||
|
.data : {
|
||
|
*(.data .data.[0-9a-zA-Z_]*)
|
||
|
*(.data..L*)
|
||
|
}
|
||
|
.rodata : {
|
||
|
*(.rodata .rodata.[0-9a-zA-Z_]*)
|
||
|
*(.rodata..L*)
|
||
|
}
|
||
|
.text : ALIGN((1 << 12)) {
|
||
|
*(.text.__cfi_check)
|
||
|
*(.text .text.[0-9a-zA-Z_]* .text..L.cfi*)
|
||
|
}
|
||
|
}
|