blob: 1bb33f408031b4229a7b8c0feaf7c67364a3bd8c [file] [log] [blame]
Dan Albert287553d2017-02-16 10:47:51 -08001/* Script for -N: mix text and data on same page; don't align data */
2/* Copyright (C) 2014 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. */
6OUTPUT_FORMAT("elf32-x86-64", "elf32-x86-64",
7 "elf32-x86-64")
8OUTPUT_ARCH(i386:x64-32)
9ENTRY(_start)
10SECTIONS
11{
12 /* Read-only sections, merged into text segment: */
13 PROVIDE (__executable_start = 0x400000); . = 0x400000 + 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.init : { *(.rela.init) }
24 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
25 .rela.fini : { *(.rela.fini) }
26 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
27 .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
28 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
29 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
30 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
31 .rela.ctors : { *(.rela.ctors) }
32 .rela.dtors : { *(.rela.dtors) }
33 .rela.got : { *(.rela.got) }
34 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
35 .rela.ldata : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
36 .rela.lbss : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
37 .rela.lrodata : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
38 .rela.ifunc : { *(.rela.ifunc) }
39 .rela.plt :
40 {
41 *(.rela.plt)
42 PROVIDE_HIDDEN (__rela_iplt_start = .);
43 *(.rela.iplt)
44 PROVIDE_HIDDEN (__rela_iplt_end = .);
45 }
46 .init :
47 {
48 KEEP (*(SORT_NONE(.init)))
49 }
50 .plt : { *(.plt) *(.iplt) }
51 .text :
52 {
53 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
54 *(.text.exit .text.exit.*)
55 *(.text.startup .text.startup.*)
56 *(.text.hot .text.hot.*)
57 *(.text .stub .text.* .gnu.linkonce.t.*)
58 /* .gnu.warning sections are handled specially by elf32.em. */
59 *(.gnu.warning)
60 }
61 .fini :
62 {
63 KEEP (*(SORT_NONE(.fini)))
64 }
65 PROVIDE (__etext = .);
66 PROVIDE (_etext = .);
67 PROVIDE (etext = .);
68 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
69 .rodata1 : { *(.rodata1) }
70 .eh_frame_hdr : { *(.eh_frame_hdr) }
71 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
72 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
73 .gcc_except_table.*) }
74 /* These sections are generated by the Sun/Oracle C++ compiler. */
75 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
76 .exception_ranges*) }
77 /* Adjust the address for the data segment. For 32 bits we want to align
78 at exactly a page boundary to make life easier for apriori. */
79 . = .;
80 /* Exception handling */
81 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
82 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
83 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
84 /* Thread Local Storage sections */
85 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
86 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
87 /* Ensure the __preinit_array_start label is properly aligned. We
88 could instead move the label definition inside the section, but
89 the linker would then create the section even if it turns out to
90 be empty, which isn't pretty. */
91 . = ALIGN(32 / 8);
92 PROVIDE_HIDDEN (__preinit_array_start = .);
93 .preinit_array :
94 {
95 KEEP (*(.preinit_array))
96 }
97 PROVIDE_HIDDEN (__preinit_array_end = .);
98 PROVIDE_HIDDEN (__init_array_start = .);
99 .init_array :
100 {
101 KEEP (*crtbegin*.o(.init_array))
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 }
105 PROVIDE_HIDDEN (__init_array_end = .);
106 PROVIDE_HIDDEN (__fini_array_start = .);
107 .fini_array :
108 {
109 KEEP (*crtbegin*.o(.fini_array))
110 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
111 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
112 }
113 PROVIDE_HIDDEN (__fini_array_end = .);
114 .ctors :
115 {
116 /* gcc uses crtbegin.o to find the start of
117 the constructors, so we make sure it is
118 first. Because this is a wildcard, it
119 doesn't matter if the user does not
120 actually link against crtbegin.o; the
121 linker won't look for a file to match a
122 wildcard. The wildcard also means that it
123 doesn't matter which directory crtbegin.o
124 is in. */
125 KEEP (*crtbegin.o(.ctors))
126 KEEP (*crtbegin*.o(.ctors))
127 /* We don't want to include the .ctor section from
128 the crtend.o file until after the sorted ctors.
129 The .ctor section from the crtend file contains the
130 end of ctors marker and it must be last */
131 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
132 KEEP (*(SORT(.ctors.*)))
133 KEEP (*(.ctors))
134 }
135 .dtors :
136 {
137 KEEP (*crtbegin.o(.dtors))
138 KEEP (*crtbegin*.o(.dtors))
139 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
140 KEEP (*(SORT(.dtors.*)))
141 KEEP (*(.dtors))
142 }
143 .jcr : { KEEP (*(.jcr)) }
144 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
145 .dynamic : { *(.dynamic) }
146 .got : { *(.got) *(.igot) }
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 __bss_start = .;
156 .bss :
157 {
158 *(.dynbss)
159 *(.bss .bss.* .gnu.linkonce.b.*)
160 *(COMMON)
161 /* Align here to ensure that the .bss section occupies space up to
162 _end. Align after .bss to ensure correct alignment even if the
163 .bss section disappears because there are no input sections. */
164 . = ALIGN(32 / 8);
165 }
166 .lbss :
167 {
168 *(.dynlbss)
169 *(.lbss .lbss.* .gnu.linkonce.lb.*)
170 *(LARGE_COMMON)
171 }
172 . = ALIGN(32 / 8);
173 . = SEGMENT_START("ldata-segment", .);
174 .lrodata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
175 {
176 *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
177 }
178 .ldata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
179 {
180 *(.ldata .ldata.* .gnu.linkonce.l.*)
181 . = ALIGN(. != 0 ? 32 / 8 : 1);
182 }
183 . = ALIGN(32 / 8);
184 _end = .;
185 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
186 PROVIDE (end = .);
187 /* Stabs debugging sections. */
188 .stab 0 : { *(.stab) }
189 .stabstr 0 : { *(.stabstr) }
190 .stab.excl 0 : { *(.stab.excl) }
191 .stab.exclstr 0 : { *(.stab.exclstr) }
192 .stab.index 0 : { *(.stab.index) }
193 .stab.indexstr 0 : { *(.stab.indexstr) }
194 .comment 0 : { *(.comment) }
195 /* DWARF debug sections.
196 Symbols in the DWARF debugging sections are relative to the beginning
197 of the section so we begin them at 0. */
198 /* DWARF 1 */
199 .debug 0 : { *(.debug) }
200 .line 0 : { *(.line) }
201 /* GNU DWARF 1 extensions */
202 .debug_srcinfo 0 : { *(.debug_srcinfo) }
203 .debug_sfnames 0 : { *(.debug_sfnames) }
204 /* DWARF 1.1 and DWARF 2 */
205 .debug_aranges 0 : { *(.debug_aranges) }
206 .debug_pubnames 0 : { *(.debug_pubnames) }
207 /* DWARF 2 */
208 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
209 .debug_abbrev 0 : { *(.debug_abbrev) }
210 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
211 .debug_frame 0 : { *(.debug_frame) }
212 .debug_str 0 : { *(.debug_str) }
213 .debug_loc 0 : { *(.debug_loc) }
214 .debug_macinfo 0 : { *(.debug_macinfo) }
215 /* SGI/MIPS DWARF 2 extensions */
216 .debug_weaknames 0 : { *(.debug_weaknames) }
217 .debug_funcnames 0 : { *(.debug_funcnames) }
218 .debug_typenames 0 : { *(.debug_typenames) }
219 .debug_varnames 0 : { *(.debug_varnames) }
220 /* DWARF 3 */
221 .debug_pubtypes 0 : { *(.debug_pubtypes) }
222 .debug_ranges 0 : { *(.debug_ranges) }
223 /* DWARF Extension. */
224 .debug_macro 0 : { *(.debug_macro) }
225 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
226 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
227}