script.lds (310B)
1 ENTRY(_test_main) 2 3 SECTIONS { 4 . = 0x100000000; 5 6 .text : ALIGN(16) { 7 *(.text .text.* *text) 8 } 9 10 .rodata : ALIGN(8) { 11 *(.rodata .rodata.* *const *cstring) 12 } 13 14 .data : ALIGN(8) { 15 *(.data .data.* *data) 16 } 17 18 .bss : ALIGN(8) { 19 *(.bss .bss.* *bss) 20 } 21 }