- ENTRY(_start)
- SECTIONS
- {
- . = 0x400000 + SIZEOF_HEADERS;
- .text : { *:_start.o(.text) *(.text.*) *(.rodata.*) }
- . = 0x800000;
- .data : { *(.data.*) }
- .bss : { *(.bss.*) }
- .line 0 : { *(.line) }
- .debug 0 : { *(.debug.*) }
- /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.comment) }
- }
|