rtthread-fm3.ld 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * linker script for Fujitsu with GNU ld
  3. * aozima 2013-07-13
  4. */
  5. /* Program Entry, set to mark it as "used" and avoid gc */
  6. MEMORY
  7. {
  8. CODE (rx) : ORIGIN = 0x00000000, LENGTH = 1M /* 1MB flash */
  9. DATA (rw) : ORIGIN = 0x20000000, LENGTH = 128k /* 128KB sram, 64KB SRAM0 + 64KB SRAM1 */
  10. }
  11. ENTRY(Reset_Handler)
  12. _system_stack_size = 0x400;
  13. SECTIONS
  14. {
  15. .text :
  16. {
  17. . = ALIGN(4);
  18. _isr_vector = .; /* define isr_vector start address */
  19. _stext = .;
  20. KEEP(*(.isr_vector)) /* Startup code */
  21. . = ALIGN(4);
  22. *(.text) /* remaining code */
  23. *(.text.*) /* remaining code */
  24. *(.rodata) /* read-only data (constants) */
  25. *(.rodata*)
  26. *(.glue_7)
  27. *(.glue_7t)
  28. *(.gnu.linkonce.t*)
  29. /* section information for finsh shell */
  30. . = ALIGN(4);
  31. __fsymtab_start = .;
  32. KEEP(*(FSymTab))
  33. __fsymtab_end = .;
  34. . = ALIGN(4);
  35. __vsymtab_start = .;
  36. KEEP(*(VSymTab))
  37. __vsymtab_end = .;
  38. . = ALIGN(4);
  39. /* section information for initial. */
  40. . = ALIGN(4);
  41. __rt_init_start = .;
  42. KEEP(*(SORT(.rti_fn*)))
  43. __rt_init_end = .;
  44. . = ALIGN(4);
  45. . = ALIGN(4);
  46. _etext = .;
  47. } > CODE = 0
  48. /* .ARM.exidx is sorted, so has to go in its own output section. */
  49. __exidx_start = .;
  50. .ARM.exidx :
  51. {
  52. *(.ARM.exidx* .gnu.linkonce.armexidx.*)
  53. /* This is used by the startup in order to initialize the .data secion */
  54. _sidata = .;
  55. } > CODE
  56. __exidx_end = .;
  57. /* .data section which is used for initialized data */
  58. .data : AT (_sidata)
  59. {
  60. . = ALIGN(4);
  61. /* This is used by the startup in order to initialize the .data secion */
  62. _sdata = . ;
  63. *(.data)
  64. *(.data.*)
  65. *(.gnu.linkonce.d*)
  66. . = ALIGN(4);
  67. /* This is used by the startup in order to initialize the .data secion */
  68. _edata = . ;
  69. } >DATA
  70. .stack :
  71. {
  72. . = . + _system_stack_size;
  73. . = ALIGN(4);
  74. _estack = .;
  75. } >DATA
  76. __bss_start = .;
  77. .bss :
  78. {
  79. . = ALIGN(4);
  80. /* This is used by the startup in order to initialize the .bss secion */
  81. _sbss = .;
  82. *(.bss)
  83. *(.bss.*)
  84. *(COMMON)
  85. . = ALIGN(4);
  86. /* This is used by the startup in order to initialize the .bss secion */
  87. _ebss = . ;
  88. *(.bss.init)
  89. } > DATA
  90. __bss_end = .;
  91. _end = .;
  92. /* Stabs debugging sections. */
  93. .stab 0 : { *(.stab) }
  94. .stabstr 0 : { *(.stabstr) }
  95. .stab.excl 0 : { *(.stab.excl) }
  96. .stab.exclstr 0 : { *(.stab.exclstr) }
  97. .stab.index 0 : { *(.stab.index) }
  98. .stab.indexstr 0 : { *(.stab.indexstr) }
  99. .comment 0 : { *(.comment) }
  100. /* DWARF debug sections.
  101. * Symbols in the DWARF debugging sections are relative to the beginning
  102. * of the section so we begin them at 0. */
  103. /* DWARF 1 */
  104. .debug 0 : { *(.debug) }
  105. .line 0 : { *(.line) }
  106. /* GNU DWARF 1 extensions */
  107. .debug_srcinfo 0 : { *(.debug_srcinfo) }
  108. .debug_sfnames 0 : { *(.debug_sfnames) }
  109. /* DWARF 1.1 and DWARF 2 */
  110. .debug_aranges 0 : { *(.debug_aranges) }
  111. .debug_pubnames 0 : { *(.debug_pubnames) }
  112. /* DWARF 2 */
  113. .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
  114. .debug_abbrev 0 : { *(.debug_abbrev) }
  115. .debug_line 0 : { *(.debug_line) }
  116. .debug_frame 0 : { *(.debug_frame) }
  117. .debug_str 0 : { *(.debug_str) }
  118. .debug_loc 0 : { *(.debug_loc) }
  119. .debug_macinfo 0 : { *(.debug_macinfo) }
  120. /* SGI/MIPS DWARF 2 extensions */
  121. .debug_weaknames 0 : { *(.debug_weaknames) }
  122. .debug_funcnames 0 : { *(.debug_funcnames) }
  123. .debug_typenames 0 : { *(.debug_typenames) }
  124. .debug_varnames 0 : { *(.debug_varnames) }
  125. }