cat < text} /* Internal text space or external memory */ .text : { *(.text) *(.gnu.linkonce.t*) *(.init) *(.fini) ${RELOCATING+ _etext = . ; } } ${RELOCATING+ > ${TEXT_MEMORY}} /* Internal data space */ .srodata ${RELOCATING-0} : { *(.srodata) } ${RELOCATING+ > data} .sdata ${RELOCATING-0} : { *(.sdata) } ${RELOCATING+ > data} /* Internal data space or external memory */ .rodata ${RELOCATING-0} : { *(.rodata) } ${RELOCATING+ > ${DATA_MEMORY}} /* C++ exception support. */ .eh_frame ${RELOCATING-0} : { *(.eh_frame) } ${RELOCATING+ > ${DATA_MEMORY}} .ctors ${RELOCATING-0} : { ${CONSTRUCTING+ __CTOR_LIST__ = .; } *(SORT(.ctors.*)) *(.ctors) ${CONSTRUCTING+ __CTOR_END__ = .; } } ${RELOCATING+ > ${DATA_MEMORY}} .dtors ${RELOCATING-0} : { ${CONSTRUCTING+ __DTOR_LIST__ = .; } *(SORT(.dtors.*)) *(.dtors) ${CONSTRUCTING+ __DTOR_END__ = .; } } ${RELOCATING+ > ${DATA_MEMORY}} .data ${RELOCATING-0} : { *(.data) *(.gnu.linkonce.d*) ${CONSTRUCTING+CONSTRUCTORS} ${RELOCATING+ _edata = . ; } } ${RELOCATING+ > ${DATA_MEMORY}} /* External memory */ .etext ${RELOCATING-0} : { ${RELOCATING+ PROVIDE (__etext_start = .) ; } *(.etext) ${RELOCATING+ PROVIDE (__etext_end = .) ; } } ${RELOCATING+ > emem} .erodata ${RELOCATING-0} : { *(.erodata) } ${RELOCATING+ > emem} .edata ${RELOCATING-0} : { *(.edata) } ${RELOCATING+ > emem} .sbss ${RELOCATING-0} : { ${RELOCATING+ PROVIDE (__sbss_start = .) ; } *(.sbss) ${RELOCATING+ PROVIDE (__sbss_end = .) ; } } ${RELOCATING+ > data} .ebss ${RELOCATING-0} : { ${RELOCATING+ PROVIDE (__ebss_start = .) ; } *(.ebss) ${RELOCATING+ PROVIDE (__ebss_end = .) ; } } ${RELOCATING+ > data} .bss ${RELOCATING-0} : { ${RELOCATING+ PROVIDE (__bss_start = .) ; } *(.bss) *(COMMON) ${RELOCATING+ PROVIDE (__bss_end = .) ; } ${RELOCATING+ _end = . ; } } ${RELOCATING+ > ${DATA_MEMORY}} .eit_v ${RELOCATING-0} : { ${RELOCATING+ PROVIDE (__eit_start = .) ; } *(.eit_v) ${RELOCATING+ PROVIDE (__eit_end = .) ; } } ${RELOCATING+ > eit} /* Stabs debugging sections. */ .stab 0 : { *(.stab) } .stabstr 0 : { *(.stabstr) } .stab.excl 0 : { *(.stab.excl) } .stab.exclstr 0 : { *(.stab.exclstr) } .stab.index 0 : { *(.stab.index) } .stab.indexstr 0 : { *(.stab.indexstr) } .comment 0 : { *(.comment) } /* DWARF debug sections. Symbols in the DWARF debugging sections are relative to the beginning of the section so we begin them at 0. */ /* DWARF 1 */ .debug 0 : { *(.debug) } .line 0 : { *(.line) } /* GNU DWARF 1 extensions */ .debug_srcinfo 0 : { *(.debug_srcinfo) } .debug_sfnames 0 : { *(.debug_sfnames) } /* DWARF 1.1 and DWARF 2 */ .debug_aranges 0 : { *(.debug_aranges) } .debug_pubnames 0 : { *(.debug_pubnames) } /* DWARF 2 */ .debug_info 0 : { *(.debug_info) } .debug_abbrev 0 : { *(.debug_abbrev) } .debug_line 0 : { *(.debug_line) } .debug_frame 0 : { *(.debug_frame) } .debug_str 0 : { *(.debug_str) } .debug_loc 0 : { *(.debug_loc) } .debug_macinfo 0 : { *(.debug_macinfo) } PROVIDE (__stack = ${STACK_START_ADDR}); } EOF