elf_k1om.xdwe 8.7 KB

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