elf_l1om.x 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /* Default linker script, for normal executables */
  2. /* Copyright (C) 2014-2020 Free Software Foundation, Inc.
  3. Copying and distribution of this script, with or without modification,
  4. are permitted in any medium without royalty provided the copyright
  5. notice and this notice are preserved. */
  6. OUTPUT_FORMAT("elf64-l1om", "elf64-l1om",
  7. "elf64-l1om")
  8. OUTPUT_ARCH(l1om)
  9. ENTRY(_start)
  10. SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib"); SEARCH_DIR("=/mnt/f/gnu/x64-linux/out/x86_64-linux-gnu/lib");
  11. SECTIONS
  12. {
  13. /* Read-only sections, merged into text segment: */
  14. PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x400000)); . = SEGMENT_START("text-segment", 0x400000) + SIZEOF_HEADERS;
  15. .interp : { *(.interp) }
  16. .note.gnu.build-id : { *(.note.gnu.build-id) }
  17. .hash : { *(.hash) }
  18. .gnu.hash : { *(.gnu.hash) }
  19. .dynsym : { *(.dynsym) }
  20. .dynstr : { *(.dynstr) }
  21. .gnu.version : { *(.gnu.version) }
  22. .gnu.version_d : { *(.gnu.version_d) }
  23. .gnu.version_r : { *(.gnu.version_r) }
  24. .rela.init : { *(.rela.init) }
  25. .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
  26. .rela.fini : { *(.rela.fini) }
  27. .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
  28. .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
  29. .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
  30. .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
  31. .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
  32. .rela.ctors : { *(.rela.ctors) }
  33. .rela.dtors : { *(.rela.dtors) }
  34. .rela.got : { *(.rela.got) }
  35. .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
  36. .rela.ldata : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
  37. .rela.lbss : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
  38. .rela.lrodata : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
  39. .rela.ifunc : { *(.rela.ifunc) }
  40. .rela.plt :
  41. {
  42. *(.rela.plt)
  43. PROVIDE_HIDDEN (__rela_iplt_start = .);
  44. *(.rela.iplt)
  45. PROVIDE_HIDDEN (__rela_iplt_end = .);
  46. }
  47. .init :
  48. {
  49. KEEP (*(SORT_NONE(.init)))
  50. }
  51. .plt : { *(.plt) *(.iplt) }
  52. .text :
  53. {
  54. *(.text.unlikely .text.*_unlikely .text.unlikely.*)
  55. *(.text.exit .text.exit.*)
  56. *(.text.startup .text.startup.*)
  57. *(.text.hot .text.hot.*)
  58. *(SORT(.text.sorted.*))
  59. *(.text .stub .text.* .gnu.linkonce.t.*)
  60. /* .gnu.warning sections are handled specially by elf.em. */
  61. *(.gnu.warning)
  62. }
  63. .fini :
  64. {
  65. KEEP (*(SORT_NONE(.fini)))
  66. }
  67. PROVIDE (__etext = .);
  68. PROVIDE (_etext = .);
  69. PROVIDE (etext = .);
  70. .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  71. .rodata1 : { *(.rodata1) }
  72. .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
  73. .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  74. .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }
  75. .gnu_extab : ONLY_IF_RO { *(.gnu_extab*) }
  76. /* These sections are generated by the Sun/Oracle C++ compiler. */
  77. .exception_ranges : ONLY_IF_RO { *(.exception_ranges*) }
  78. /* Adjust the address for the data segment. We want to adjust up to
  79. the same address within the page on the next page up. */
  80. . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
  81. /* Exception handling */
  82. .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  83. .gnu_extab : ONLY_IF_RW { *(.gnu_extab) }
  84. .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
  85. .exception_ranges : ONLY_IF_RW { *(.exception_ranges*) }
  86. /* Thread Local Storage sections */
  87. .tdata :
  88. {
  89. PROVIDE_HIDDEN (__tdata_start = .);
  90. *(.tdata .tdata.* .gnu.linkonce.td.*)
  91. }
  92. .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  93. .preinit_array :
  94. {
  95. PROVIDE_HIDDEN (__preinit_array_start = .);
  96. KEEP (*(.preinit_array))
  97. PROVIDE_HIDDEN (__preinit_array_end = .);
  98. }
  99. .init_array :
  100. {
  101. PROVIDE_HIDDEN (__init_array_start = .);
  102. KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
  103. KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
  104. PROVIDE_HIDDEN (__init_array_end = .);
  105. }
  106. .fini_array :
  107. {
  108. PROVIDE_HIDDEN (__fini_array_start = .);
  109. KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
  110. KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
  111. PROVIDE_HIDDEN (__fini_array_end = .);
  112. }
  113. .ctors :
  114. {
  115. /* gcc uses crtbegin.o to find the start of
  116. the constructors, so we make sure it is
  117. first. Because this is a wildcard, it
  118. doesn't matter if the user does not
  119. actually link against crtbegin.o; the
  120. linker won't look for a file to match a
  121. wildcard. The wildcard also means that it
  122. doesn't matter which directory crtbegin.o
  123. is in. */
  124. KEEP (*crtbegin.o(.ctors))
  125. KEEP (*crtbegin?.o(.ctors))
  126. /* We don't want to include the .ctor section from
  127. the crtend.o file until after the sorted ctors.
  128. The .ctor section from the crtend file contains the
  129. end of ctors marker and it must be last */
  130. KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
  131. KEEP (*(SORT(.ctors.*)))
  132. KEEP (*(.ctors))
  133. }
  134. .dtors :
  135. {
  136. KEEP (*crtbegin.o(.dtors))
  137. KEEP (*crtbegin?.o(.dtors))
  138. KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
  139. KEEP (*(SORT(.dtors.*)))
  140. KEEP (*(.dtors))
  141. }
  142. .jcr : { KEEP (*(.jcr)) }
  143. .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
  144. .dynamic : { *(.dynamic) }
  145. .got : { *(.got) *(.igot) }
  146. . = DATA_SEGMENT_RELRO_END (SIZEOF (.got.plt) >= 24 ? 24 : 0, .);
  147. .got.plt : { *(.got.plt) *(.igot.plt) }
  148. .data :
  149. {
  150. *(.data .data.* .gnu.linkonce.d.*)
  151. SORT(CONSTRUCTORS)
  152. }
  153. .data1 : { *(.data1) }
  154. _edata = .; PROVIDE (edata = .);
  155. . = .;
  156. __bss_start = .;
  157. .bss :
  158. {
  159. *(.dynbss)
  160. *(.bss .bss.* .gnu.linkonce.b.*)
  161. *(COMMON)
  162. /* Align here to ensure that the .bss section occupies space up to
  163. _end. Align after .bss to ensure correct alignment even if the
  164. .bss section disappears because there are no input sections.
  165. FIXME: Why do we need it? When there is no .bss section, we do not
  166. pad the .data section. */
  167. . = ALIGN(. != 0 ? 64 / 8 : 1);
  168. }
  169. .lbss :
  170. {
  171. *(.dynlbss)
  172. *(.lbss .lbss.* .gnu.linkonce.lb.*)
  173. *(LARGE_COMMON)
  174. }
  175. . = ALIGN(64 / 8);
  176. . = SEGMENT_START("ldata-segment", .);
  177. .lrodata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  178. {
  179. *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
  180. }
  181. .ldata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  182. {
  183. *(.ldata .ldata.* .gnu.linkonce.l.*)
  184. . = ALIGN(. != 0 ? 64 / 8 : 1);
  185. }
  186. . = ALIGN(64 / 8);
  187. _end = .; PROVIDE (end = .);
  188. . = DATA_SEGMENT_END (.);
  189. /* Stabs debugging sections. */
  190. .stab 0 : { *(.stab) }
  191. .stabstr 0 : { *(.stabstr) }
  192. .stab.excl 0 : { *(.stab.excl) }
  193. .stab.exclstr 0 : { *(.stab.exclstr) }
  194. .stab.index 0 : { *(.stab.index) }
  195. .stab.indexstr 0 : { *(.stab.indexstr) }
  196. .comment 0 : { *(.comment) }
  197. .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
  198. /* DWARF debug sections.
  199. Symbols in the DWARF debugging sections are relative to the beginning
  200. of the section so we begin them at 0. */
  201. /* DWARF 1 */
  202. .debug 0 : { *(.debug) }
  203. .line 0 : { *(.line) }
  204. /* GNU DWARF 1 extensions */
  205. .debug_srcinfo 0 : { *(.debug_srcinfo) }
  206. .debug_sfnames 0 : { *(.debug_sfnames) }
  207. /* DWARF 1.1 and DWARF 2 */
  208. .debug_aranges 0 : { *(.debug_aranges) }
  209. .debug_pubnames 0 : { *(.debug_pubnames) }
  210. /* DWARF 2 */
  211. .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
  212. .debug_abbrev 0 : { *(.debug_abbrev) }
  213. .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end) }
  214. .debug_frame 0 : { *(.debug_frame) }
  215. .debug_str 0 : { *(.debug_str) }
  216. .debug_loc 0 : { *(.debug_loc) }
  217. .debug_macinfo 0 : { *(.debug_macinfo) }
  218. /* SGI/MIPS DWARF 2 extensions */
  219. .debug_weaknames 0 : { *(.debug_weaknames) }
  220. .debug_funcnames 0 : { *(.debug_funcnames) }
  221. .debug_typenames 0 : { *(.debug_typenames) }
  222. .debug_varnames 0 : { *(.debug_varnames) }
  223. /* DWARF 3 */
  224. .debug_pubtypes 0 : { *(.debug_pubtypes) }
  225. .debug_ranges 0 : { *(.debug_ranges) }
  226. /* DWARF Extension. */
  227. .debug_macro 0 : { *(.debug_macro) }
  228. .debug_addr 0 : { *(.debug_addr) }
  229. .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
  230. /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
  231. }