hppalinux.xd 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /* Script for -pie */
  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("elf32-hppa-linux", "elf32-hppa-linux",
  7. "elf32-hppa-linux")
  8. OUTPUT_ARCH(hppa:hppa1.1)
  9. ENTRY(_start)
  10. SEARCH_DIR("=/usr/local/lib/hppa-linux-gnu"); SEARCH_DIR("=/lib/hppa-linux-gnu"); SEARCH_DIR("=/usr/lib/hppa-linux-gnu"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib"); SEARCH_DIR("=/usr/hppa-linux-gnu/lib");
  11. SECTIONS
  12. {
  13. /* Read-only sections, merged into text segment: */
  14. PROVIDE (__executable_start = SEGMENT_START("text-segment", 0)); . = SEGMENT_START("text-segment", 0) + 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.sdata : { *(.rela.sdata .rela.sdata.* .rela.gnu.linkonce.s.*) }
  36. .rela.sbss : { *(.rela.sbss .rela.sbss.* .rela.gnu.linkonce.sb.*) }
  37. .rela.sdata2 : { *(.rela.sdata2 .rela.sdata2.* .rela.gnu.linkonce.s2.*) }
  38. .rela.sbss2 : { *(.rela.sbss2 .rela.sbss2.* .rela.gnu.linkonce.sb2.*) }
  39. .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
  40. .rela.iplt :
  41. {
  42. *(.rela.iplt)
  43. }
  44. .rela.plt :
  45. {
  46. *(.rela.plt)
  47. }
  48. .init :
  49. {
  50. KEEP (*(SORT_NONE(.init)))
  51. } =0x08000240
  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. } =0x08000240
  63. .fini :
  64. {
  65. KEEP (*(SORT_NONE(.fini)))
  66. } =0x08000240
  67. PROVIDE (__etext = .);
  68. PROVIDE (_etext = .);
  69. PROVIDE (etext = .);
  70. .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  71. .rodata1 : { *(.rodata1) }
  72. .sdata2 :
  73. {
  74. *(.sdata2 .sdata2.* .gnu.linkonce.s2.*)
  75. }
  76. .sbss2 : { *(.sbss2 .sbss2.* .gnu.linkonce.sb2.*) }
  77. .PARISC.unwind : { *(.PARISC.unwind) }
  78. .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
  79. .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  80. .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }
  81. .gnu_extab : ONLY_IF_RO { *(.gnu_extab*) }
  82. /* These sections are generated by the Sun/Oracle C++ compiler. */
  83. .exception_ranges : ONLY_IF_RO { *(.exception_ranges*) }
  84. /* Adjust the address for the data segment. We want to adjust up to
  85. the same address within the page on the next page up. */
  86. . = ALIGN(CONSTANT (MAXPAGESIZE)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
  87. /* Exception handling */
  88. .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  89. .gnu_extab : ONLY_IF_RW { *(.gnu_extab) }
  90. .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
  91. .exception_ranges : ONLY_IF_RW { *(.exception_ranges*) }
  92. /* Thread Local Storage sections */
  93. .tdata :
  94. {
  95. PROVIDE_HIDDEN (__tdata_start = .);
  96. *(.tdata .tdata.* .gnu.linkonce.td.*)
  97. }
  98. .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  99. .preinit_array :
  100. {
  101. PROVIDE_HIDDEN (__preinit_array_start = .);
  102. KEEP (*(.preinit_array))
  103. PROVIDE_HIDDEN (__preinit_array_end = .);
  104. }
  105. .init_array :
  106. {
  107. PROVIDE_HIDDEN (__init_array_start = .);
  108. KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
  109. KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
  110. PROVIDE_HIDDEN (__init_array_end = .);
  111. }
  112. .fini_array :
  113. {
  114. PROVIDE_HIDDEN (__fini_array_start = .);
  115. KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
  116. KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
  117. PROVIDE_HIDDEN (__fini_array_end = .);
  118. }
  119. .ctors :
  120. {
  121. /* gcc uses crtbegin.o to find the start of
  122. the constructors, so we make sure it is
  123. first. Because this is a wildcard, it
  124. doesn't matter if the user does not
  125. actually link against crtbegin.o; the
  126. linker won't look for a file to match a
  127. wildcard. The wildcard also means that it
  128. doesn't matter which directory crtbegin.o
  129. is in. */
  130. KEEP (*crtbegin.o(.ctors))
  131. KEEP (*crtbegin?.o(.ctors))
  132. /* We don't want to include the .ctor section from
  133. the crtend.o file until after the sorted ctors.
  134. The .ctor section from the crtend file contains the
  135. end of ctors marker and it must be last */
  136. KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
  137. KEEP (*(SORT(.ctors.*)))
  138. KEEP (*(.ctors))
  139. }
  140. .dtors :
  141. {
  142. KEEP (*crtbegin.o(.dtors))
  143. KEEP (*crtbegin?.o(.dtors))
  144. KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
  145. KEEP (*(SORT(.dtors.*)))
  146. KEEP (*(.dtors))
  147. }
  148. .jcr : { KEEP (*(.jcr)) }
  149. .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
  150. .dynamic : { *(.dynamic) }
  151. . = DATA_SEGMENT_RELRO_END (0, .);
  152. .data :
  153. {
  154. PROVIDE ($global$ = .);
  155. *(.data .data.* .gnu.linkonce.d.*)
  156. SORT(CONSTRUCTORS)
  157. }
  158. .data1 : { *(.data1) }
  159. .plt : { *(.plt) }
  160. .iplt : { *(.iplt) }
  161. .got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
  162. /* We want the small data sections together, so single-instruction offsets
  163. can access them all, and initialized data all before uninitialized, so
  164. we can shorten the on-disk segment size. */
  165. .sdata :
  166. {
  167. *(.sdata .sdata.* .gnu.linkonce.s.*)
  168. }
  169. _edata = .; PROVIDE (edata = .);
  170. . = .;
  171. __bss_start = .;
  172. .sbss :
  173. {
  174. *(.dynsbss)
  175. *(.sbss .sbss.* .gnu.linkonce.sb.*)
  176. *(.scommon)
  177. }
  178. .bss :
  179. {
  180. *(.dynbss)
  181. *(.bss .bss.* .gnu.linkonce.b.*)
  182. *(COMMON)
  183. /* Align here to ensure that the .bss section occupies space up to
  184. _end. Align after .bss to ensure correct alignment even if the
  185. .bss section disappears because there are no input sections.
  186. FIXME: Why do we need it? When there is no .bss section, we do not
  187. pad the .data section. */
  188. . = ALIGN(. != 0 ? 32 / 8 : 1);
  189. }
  190. . = ALIGN(32 / 8);
  191. . = SEGMENT_START("ldata-segment", .);
  192. . = ALIGN(32 / 8);
  193. _end = .; PROVIDE (end = .);
  194. . = DATA_SEGMENT_END (.);
  195. /* Stabs debugging sections. */
  196. .stab 0 : { *(.stab) }
  197. .stabstr 0 : { *(.stabstr) }
  198. .stab.excl 0 : { *(.stab.excl) }
  199. .stab.exclstr 0 : { *(.stab.exclstr) }
  200. .stab.index 0 : { *(.stab.index) }
  201. .stab.indexstr 0 : { *(.stab.indexstr) }
  202. .comment 0 : { *(.comment) }
  203. .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
  204. /* DWARF debug sections.
  205. Symbols in the DWARF debugging sections are relative to the beginning
  206. of the section so we begin them at 0. */
  207. /* DWARF 1 */
  208. .debug 0 : { *(.debug) }
  209. .line 0 : { *(.line) }
  210. /* GNU DWARF 1 extensions */
  211. .debug_srcinfo 0 : { *(.debug_srcinfo) }
  212. .debug_sfnames 0 : { *(.debug_sfnames) }
  213. /* DWARF 1.1 and DWARF 2 */
  214. .debug_aranges 0 : { *(.debug_aranges) }
  215. .debug_pubnames 0 : { *(.debug_pubnames) }
  216. /* DWARF 2 */
  217. .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
  218. .debug_abbrev 0 : { *(.debug_abbrev) }
  219. .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end) }
  220. .debug_frame 0 : { *(.debug_frame) }
  221. .debug_str 0 : { *(.debug_str) }
  222. .debug_loc 0 : { *(.debug_loc) }
  223. .debug_macinfo 0 : { *(.debug_macinfo) }
  224. /* SGI/MIPS DWARF 2 extensions */
  225. .debug_weaknames 0 : { *(.debug_weaknames) }
  226. .debug_funcnames 0 : { *(.debug_funcnames) }
  227. .debug_typenames 0 : { *(.debug_typenames) }
  228. .debug_varnames 0 : { *(.debug_varnames) }
  229. /* DWARF 3 */
  230. .debug_pubtypes 0 : { *(.debug_pubtypes) }
  231. .debug_ranges 0 : { *(.debug_ranges) }
  232. /* DWARF Extension. */
  233. .debug_macro 0 : { *(.debug_macro) }
  234. .debug_addr 0 : { *(.debug_addr) }
  235. .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
  236. /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
  237. }