ENTRY(_start) SECTIONS { . = 0x10000; .text : { /* Forcing .text.exit in the first position in .text section */ musl/lib/libc.a:exit.o(.text.exit); *(.text*); } . = 0x8000000; .data : { *(.data*) } .rodata : { *(.rodata*) } .bss : { *(.bss*) } }