blob: 8e121a009073d486515e2880caae187906bd839c [file] [log] [blame]
Andrew Hsieh35659b62013-09-22 14:07:09 +08001/* Script for ld -r: link without relocation */
2OUTPUT_FORMAT("elf32-tradbigmips", "elf32-tradbigmips",
3 "elf32-tradlittlemips")
4OUTPUT_ARCH(mips)
5 /* For some reason, the Solaris linker makes bad executables
6 if gld -r is used and the intermediate file has sections starting
7 at non-zero addresses. Could be a Solaris ld bug, could be a GNU ld
8 bug. But for now assigning the zero vmas works. */
9SECTIONS
10{
11 /* Read-only sections, merged into text segment: */
12 .interp 0 : { *(.interp) }
13 .reginfo 0 : { *(.reginfo) }
14 .note.gnu.build-id : { *(.note.gnu.build-id) }
15 .dynamic 0 : { *(.dynamic) }
16 .hash 0 : { *(.hash) }
17 .gnu.hash 0 : { *(.gnu.hash) }
18 .dynsym 0 : { *(.dynsym) }
19 .dynstr 0 : { *(.dynstr) }
20 .gnu.version 0 : { *(.gnu.version) }
21 .gnu.version_d 0: { *(.gnu.version_d) }
22 .gnu.version_r 0: { *(.gnu.version_r) }
23 .rel.init 0 : { *(.rel.init) }
24 .rela.init 0 : { *(.rela.init) }
25 .rel.text 0 : { *(.rel.text) }
26 .rela.text 0 : { *(.rela.text) }
27 .rel.fini 0 : { *(.rel.fini) }
28 .rela.fini 0 : { *(.rela.fini) }
29 .rel.rodata 0 : { *(.rel.rodata) }
30 .rela.rodata 0 : { *(.rela.rodata) }
31 .rel.data.rel.ro 0 : { *(.rel.data.rel.ro) }
32 .rela.data.rel.ro 0 : { *(.rela.data.rel.ro) }
33 .rel.data 0 : { *(.rel.data) }
34 .rela.data 0 : { *(.rela.data) }
35 .rel.tdata 0 : { *(.rel.tdata) }
36 .rela.tdata 0 : { *(.rela.tdata) }
37 .rel.tbss 0 : { *(.rel.tbss) }
38 .rela.tbss 0 : { *(.rela.tbss) }
39 .rel.ctors 0 : { *(.rel.ctors) }
40 .rela.ctors 0 : { *(.rela.ctors) }
41 .rel.dtors 0 : { *(.rel.dtors) }
42 .rela.dtors 0 : { *(.rela.dtors) }
43 .rel.got 0 : { *(.rel.got) }
44 .rela.got 0 : { *(.rela.got) }
45 .rel.dyn 0 : { *(.rel.dyn) }
46 .rel.sdata 0 : { *(.rel.sdata) }
47 .rela.sdata 0 : { *(.rela.sdata) }
48 .rel.sbss 0 : { *(.rel.sbss) }
49 .rela.sbss 0 : { *(.rela.sbss) }
50 .rel.sdata2 0 : { *(.rel.sdata2) }
51 .rela.sdata2 0 : { *(.rela.sdata2) }
52 .rel.sbss2 0 : { *(.rel.sbss2) }
53 .rela.sbss2 0 : { *(.rela.sbss2) }
54 .rel.bss 0 : { *(.rel.bss) }
55 .rela.bss 0 : { *(.rela.bss) }
56 .rel.iplt 0 :
57 {
58 *(.rel.iplt)
59 }
60 .rela.iplt 0 :
61 {
62 *(.rela.iplt)
63 }
64 .rel.plt 0 :
65 {
66 *(.rel.plt)
67 }
68 .rela.plt 0 :
69 {
70 *(.rela.plt)
71 }
72 .init 0 :
73 {
74 KEEP (*(SORT_NONE(.init)))
75 }
Andrew Hsieh35659b62013-09-22 14:07:09 +080076 .text 0 :
77 {
78 *(.text .stub)
79 /* .gnu.warning sections are handled specially by elf32.em. */
80 *(.gnu.warning)
81 }
82 .fini 0 :
83 {
84 KEEP (*(SORT_NONE(.fini)))
85 }
86 .rodata 0 : { *(.rodata) }
87 .rodata1 0 : { *(.rodata1) }
88 .sdata2 0 :
89 {
90 *(.sdata2)
91 }
92 .sbss2 0 : { *(.sbss2) }
93 .eh_frame_hdr : { *(.eh_frame_hdr) }
94 .eh_frame 0 : ONLY_IF_RO { KEEP (*(.eh_frame)) }
95 .gcc_except_table 0 : ONLY_IF_RO { *(.gcc_except_table
96 .gcc_except_table.*) }
97 /* These sections are generated by the Sun/Oracle C++ compiler. */
98 .exception_ranges 0 : ONLY_IF_RO { *(.exception_ranges
99 .exception_ranges*) }
Andrew Hsieh98557ce2014-04-26 20:01:20 -0700100 .plt 0 : { *(.plt) }
101 .iplt 0 : { *(.iplt) }
102 /* Adjust the address for the data segment. For 32 bits we want to align
103 at exactly a page boundary to make life easier for apriori. */
Andrew Hsieh35659b62013-09-22 14:07:09 +0800104 /* Exception handling */
105 .eh_frame 0 : ONLY_IF_RW { KEEP (*(.eh_frame)) }
106 .gcc_except_table 0 : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
107 .exception_ranges 0 : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
108 /* Thread Local Storage sections */
109 .tdata 0 : { *(.tdata) }
110 .tbss 0 : { *(.tbss) }
111 /* Ensure the __preinit_array_start label is properly aligned. We
112 could instead move the label definition inside the section, but
113 the linker would then create the section even if it turns out to
114 be empty, which isn't pretty. */
115 . = ALIGN(32 / 8);
116 .preinit_array 0 :
117 {
118 KEEP (*(.preinit_array))
119 }
120 .jcr 0 : { KEEP (*(.jcr)) }
Andrew Hsieh98557ce2014-04-26 20:01:20 -0700121 .got.plt 0 : { *(.got.plt) }
Andrew Hsieh35659b62013-09-22 14:07:09 +0800122 .data 0 :
123 {
124 *(.data)
125 }
126 .data1 0 : { *(.data1) }
Andrew Hsieh35659b62013-09-22 14:07:09 +0800127 .got 0 : { *(.got) }
128 /* We want the small data sections together, so single-instruction offsets
129 can access them all, and initialized data all before uninitialized, so
130 we can shorten the on-disk segment size. */
131 .sdata 0 :
132 {
133 *(.sdata)
134 }
135 .lit8 0 : { *(.lit8) }
136 .lit4 0 : { *(.lit4) }
137 .sbss 0 :
138 {
139 *(.dynsbss)
140 *(.sbss)
141 *(.scommon)
142 }
143 .bss 0 :
144 {
145 *(.dynbss)
146 *(.bss)
147 *(COMMON)
148 /* Align here to ensure that the .bss section occupies space up to
149 _end. Align after .bss to ensure correct alignment even if the
150 .bss section disappears because there are no input sections. */
151 }
152 /* Stabs debugging sections. */
153 .stab 0 : { *(.stab) }
154 .stabstr 0 : { *(.stabstr) }
155 .stab.excl 0 : { *(.stab.excl) }
156 .stab.exclstr 0 : { *(.stab.exclstr) }
157 .stab.index 0 : { *(.stab.index) }
158 .stab.indexstr 0 : { *(.stab.indexstr) }
159 .comment 0 : { *(.comment) }
160 /* DWARF debug sections.
161 Symbols in the DWARF debugging sections are relative to the beginning
162 of the section so we begin them at 0. */
163 /* DWARF 1 */
164 .debug 0 : { *(.debug) }
165 .line 0 : { *(.line) }
166 /* GNU DWARF 1 extensions */
167 .debug_srcinfo 0 : { *(.debug_srcinfo) }
168 .debug_sfnames 0 : { *(.debug_sfnames) }
169 /* DWARF 1.1 and DWARF 2 */
170 .debug_aranges 0 : { *(.debug_aranges) }
171 .debug_pubnames 0 : { *(.debug_pubnames) }
172 /* DWARF 2 */
173 .debug_info 0 : { *(.debug_info) }
174 .debug_abbrev 0 : { *(.debug_abbrev) }
Andrew Hsieh98557ce2014-04-26 20:01:20 -0700175 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
Andrew Hsieh35659b62013-09-22 14:07:09 +0800176 .debug_frame 0 : { *(.debug_frame) }
177 .debug_str 0 : { *(.debug_str) }
178 .debug_loc 0 : { *(.debug_loc) }
179 .debug_macinfo 0 : { *(.debug_macinfo) }
180 /* SGI/MIPS DWARF 2 extensions */
181 .debug_weaknames 0 : { *(.debug_weaknames) }
182 .debug_funcnames 0 : { *(.debug_funcnames) }
183 .debug_typenames 0 : { *(.debug_typenames) }
184 .debug_varnames 0 : { *(.debug_varnames) }
185 /* DWARF 3 */
186 .debug_pubtypes 0 : { *(.debug_pubtypes) }
187 .debug_ranges 0 : { *(.debug_ranges) }
188 /* DWARF Extension. */
189 .debug_macro 0 : { *(.debug_macro) }
190 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
191 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
192 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }
193 .gcc_compiled_long32 0 : { KEEP(*(.gcc_compiled_long32)) }
194 .gcc_compiled_long64 0 : { KEEP(*(.gcc_compiled_long64)) }
195}