blob: da065e138b79d9f247750d61e2b419e6d0bff38c [file] [log] [blame]
Ben Cheng7823f2a2014-04-08 14:53:42 -07001/* Script for --shared -z combreloc: shared library, combine & sort relocs */
Ben Cheng79781f52014-05-19 10:33:46 -07002/* Modified for Android. */
Rong Xue1a8a482015-04-08 12:48:42 -07003/* Copyright (C) 2014 Free Software Foundation, Inc.
4 Copying and distribution of this script, with or without modification,
5 are permitted in any medium without royalty provided the copyright
6 notice and this notice are preserved. */
Ben Cheng7823f2a2014-04-08 14:53:42 -07007OUTPUT_FORMAT("elf32-bigarm", "elf32-bigarm",
8 "elf32-littlearm")
9OUTPUT_ARCH(arm)
10ENTRY(_start)
Ben Cheng7823f2a2014-04-08 14:53:42 -070011SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
Ben Cheng79781f52014-05-19 10:33:46 -070014 . = 0 + SIZEOF_HEADERS;
Ben Cheng7823f2a2014-04-08 14:53:42 -070015 .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 .rel.dyn :
24 {
25 *(.rel.init)
26 *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
27 *(.rel.fini)
28 *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*)
29 *(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*)
30 *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*)
31 *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*)
32 *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*)
33 *(.rel.ctors)
34 *(.rel.dtors)
35 *(.rel.got)
36 *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*)
37 *(.rel.iplt)
38 }
39 .rela.dyn :
40 {
41 *(.rela.init)
42 *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
43 *(.rela.fini)
44 *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
45 *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
46 *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
47 *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
48 *(.rela.ctors)
49 *(.rela.dtors)
50 *(.rela.got)
51 *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
52 *(.rela.iplt)
53 }
54 .rel.plt :
55 {
56 *(.rel.plt)
57 }
58 .rela.plt :
59 {
60 *(.rela.plt)
61 }
62 .init :
63 {
64 KEEP (*(SORT_NONE(.init)))
65 }
66 .plt : { *(.plt) }
67 .iplt : { *(.iplt) }
68 .text :
69 {
70 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
71 *(.text.exit .text.exit.*)
72 *(.text.startup .text.startup.*)
73 *(.text.hot .text.hot.*)
74 *(.text .stub .text.* .gnu.linkonce.t.*)
75 /* .gnu.warning sections are handled specially by elf32.em. */
76 *(.gnu.warning)
77 *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx)
78 }
79 .fini :
80 {
81 KEEP (*(SORT_NONE(.fini)))
82 }
83 PROVIDE (__etext = .);
84 PROVIDE (_etext = .);
85 PROVIDE (etext = .);
86 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
87 .rodata1 : { *(.rodata1) }
88 .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) }
89 PROVIDE_HIDDEN (__exidx_start = .);
90 .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
91 PROVIDE_HIDDEN (__exidx_end = .);
92 .eh_frame_hdr : { *(.eh_frame_hdr) }
93 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
94 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
95 .gcc_except_table.*) }
96 /* These sections are generated by the Sun/Oracle C++ compiler. */
97 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
98 .exception_ranges*) }
Ben Cheng79781f52014-05-19 10:33:46 -070099 /* Adjust the address for the data segment. For 32 bits we want to align
100 at exactly a page boundary to make life easier for apriori. */
101 . = ALIGN (CONSTANT (MAXPAGESIZE)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
Ben Cheng7823f2a2014-04-08 14:53:42 -0700102 /* Exception handling */
103 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
104 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
105 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
106 /* Thread Local Storage sections */
107 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
108 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
Ben Cheng79781f52014-05-19 10:33:46 -0700109 /* Ensure the __preinit_array_start label is properly aligned. We
110 could instead move the label definition inside the section, but
111 the linker would then create the section even if it turns out to
112 be empty, which isn't pretty. */
113 . = ALIGN(32 / 8);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700114 .preinit_array :
115 {
116 KEEP (*(.preinit_array))
117 }
118 .init_array :
119 {
Ben Cheng79781f52014-05-19 10:33:46 -0700120 KEEP (*crtbegin*.o(.init_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700121 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700122 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700123 }
124 .fini_array :
125 {
Ben Cheng79781f52014-05-19 10:33:46 -0700126 KEEP (*crtbegin*.o(.fini_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700127 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700128 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700129 }
130 .ctors :
131 {
132 /* gcc uses crtbegin.o to find the start of
133 the constructors, so we make sure it is
134 first. Because this is a wildcard, it
135 doesn't matter if the user does not
136 actually link against crtbegin.o; the
137 linker won't look for a file to match a
138 wildcard. The wildcard also means that it
139 doesn't matter which directory crtbegin.o
140 is in. */
141 KEEP (*crtbegin.o(.ctors))
Ben Cheng79781f52014-05-19 10:33:46 -0700142 KEEP (*crtbegin*.o(.ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700143 /* We don't want to include the .ctor section from
144 the crtend.o file until after the sorted ctors.
145 The .ctor section from the crtend file contains the
146 end of ctors marker and it must be last */
Ben Cheng79781f52014-05-19 10:33:46 -0700147 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700148 KEEP (*(SORT(.ctors.*)))
149 KEEP (*(.ctors))
150 }
151 .dtors :
152 {
153 KEEP (*crtbegin.o(.dtors))
Ben Cheng79781f52014-05-19 10:33:46 -0700154 KEEP (*crtbegin*.o(.dtors))
155 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700156 KEEP (*(SORT(.dtors.*)))
157 KEEP (*(.dtors))
158 }
159 .jcr : { KEEP (*(.jcr)) }
160 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
161 .dynamic : { *(.dynamic) }
162 . = DATA_SEGMENT_RELRO_END (0, .);
163 .got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
164 .data :
165 {
166 PROVIDE (__data_start = .);
167 *(.data .data.* .gnu.linkonce.d.*)
168 SORT(CONSTRUCTORS)
169 }
170 .data1 : { *(.data1) }
171 _edata = .; PROVIDE (edata = .);
172 . = .;
173 __bss_start = .;
174 __bss_start__ = .;
175 .bss :
176 {
177 *(.dynbss)
178 *(.bss .bss.* .gnu.linkonce.b.*)
179 *(COMMON)
180 /* Align here to ensure that the .bss section occupies space up to
181 _end. Align after .bss to ensure correct alignment even if the
Ben Cheng79781f52014-05-19 10:33:46 -0700182 .bss section disappears because there are no input sections. */
183 . = ALIGN(32 / 8);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700184 }
185 _bss_end__ = . ; __bss_end__ = . ;
186 . = ALIGN(32 / 8);
187 . = SEGMENT_START("ldata-segment", .);
188 . = ALIGN(32 / 8);
189 __end__ = . ;
Ben Cheng79781f52014-05-19 10:33:46 -0700190 _end = .;
191 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
192 PROVIDE (end = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700193 . = DATA_SEGMENT_END (.);
194 /* Stabs debugging sections. */
195 .stab 0 : { *(.stab) }
196 .stabstr 0 : { *(.stabstr) }
197 .stab.excl 0 : { *(.stab.excl) }
198 .stab.exclstr 0 : { *(.stab.exclstr) }
199 .stab.index 0 : { *(.stab.index) }
200 .stab.indexstr 0 : { *(.stab.indexstr) }
201 .comment 0 : { *(.comment) }
202 /* DWARF debug sections.
203 Symbols in the DWARF debugging sections are relative to the beginning
204 of the section so we begin them at 0. */
205 /* DWARF 1 */
206 .debug 0 : { *(.debug) }
207 .line 0 : { *(.line) }
208 /* GNU DWARF 1 extensions */
209 .debug_srcinfo 0 : { *(.debug_srcinfo) }
210 .debug_sfnames 0 : { *(.debug_sfnames) }
211 /* DWARF 1.1 and DWARF 2 */
212 .debug_aranges 0 : { *(.debug_aranges) }
213 .debug_pubnames 0 : { *(.debug_pubnames) }
214 /* DWARF 2 */
215 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
216 .debug_abbrev 0 : { *(.debug_abbrev) }
217 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
218 .debug_frame 0 : { *(.debug_frame) }
219 .debug_str 0 : { *(.debug_str) }
220 .debug_loc 0 : { *(.debug_loc) }
221 .debug_macinfo 0 : { *(.debug_macinfo) }
222 /* SGI/MIPS DWARF 2 extensions */
223 .debug_weaknames 0 : { *(.debug_weaknames) }
224 .debug_funcnames 0 : { *(.debug_funcnames) }
225 .debug_typenames 0 : { *(.debug_typenames) }
226 .debug_varnames 0 : { *(.debug_varnames) }
227 /* DWARF 3 */
228 .debug_pubtypes 0 : { *(.debug_pubtypes) }
229 .debug_ranges 0 : { *(.debug_ranges) }
230 /* DWARF Extension. */
231 .debug_macro 0 : { *(.debug_macro) }
232 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
233 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
Ben Cheng79781f52014-05-19 10:33:46 -0700234 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -0700235}