| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /***********************************************************************************
- *
- * lm3x_flash.ld - linker script include for nutos on cotrex-m3 LM3 series
- *
- ***********************************************************************************/
- PROVIDE (__heap_start = _sheap);
- _ramend = ORIGIN(SRAM0) + LENGTH(SRAM0);
- SECTIONS
- {
- .text :
- {
- . = ALIGN(4);
- _svect = .;
- KEEP(*(.isr_vector))
- _evect = .;
- *(.text .text.* .gnu.linkonce.t.*)
- *(.glue_7)
- *(.glue_7t)
- *(.gcc_except_table)
- *(.rodata .rodata* .gnu.linkonce.r.*)
- . = ALIGN(4);
- _etext = .;
- } > FLASH0
- .vtable (NOLOAD):
- {
- . = ALIGN(4);
- _vtable = .;
- *(.vtable*)
- . = ALIGN(4);
- _evtable = .;
- } > SRAM0
-
- .data : AT (_etext)
- {
- _sdata = _evtable;
- *(.data .data.* .gnu.linkonce.d.*)
- . = ALIGN(4);
- _edata = .;
- } > SRAM0
- .bss :
- {
- _sbss = .;
- *(.bss .bss.* .gnu.linkonce.b.*)
- *(COMMON)
- . = ALIGN(4);
- _ebss = .;
- } > SRAM0
- .stack (NOLOAD):
- {
- . = ALIGN(8);
- _stack_start = .;
- *(.stack .stack.*)
- _stack_end = .;
- } > SRAM0
-
- .heap (NOLOAD):
- {
- . = ALIGN(8);
- _sheap = .;
- . = _ramend - .;
- _eheap = .;
- } > SRAM0
- end = .;
- DISCARD :
- {
- libc.a ( * )
- libm.a ( * )
- libgcc.a ( * )
- }
- /* 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 .gnu.linkonce.wi.*) }
- .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) }
- /* SGI/MIPS DWARF 2 extensions */
- .debug_weaknames 0 : { *(.debug_weaknames) }
- .debug_funcnames 0 : { *(.debug_funcnames) }
- .debug_typenames 0 : { *(.debug_typenames) }
- .debug_varnames 0 : { *(.debug_varnames) }
- }
|