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