123456789101112131415161718192021 |
- SECTIONS
- {
- . = 4M + SIZEOF_HEADERS
- stext = .
- .text : { *(.init) *(.text) *(.text.*) }
- . = ALIGN(4K)
- .data : {
- *(.data)
- exception_table_start = .
- *(.data.ex)
- exception_table_end = .
- }
- . = ALIGN(16)
- .rodata : { *(.rodata) }
- . = ALIGN(16)
- .bss : { *(.bss) }
- . = ALIGN(4K)
- edata = .
- }
- ENTRY(start)
|