#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
ENTRY(_start) PHDRS { stuff PT_LOAD FLAGS(7); } SECTIONS { /* here we place `.entry` as the first section */ .entry : { *(.entry) } . = .; .text : { *(.text.*) } .rodata : { *(.rodata.*) } .data : { *(.data.*) } .bss : { *(.bss.*) } }