blob: 911bc979b128bea48d8b8a0155c7674d1b492f9b [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. */
Ben Cheng7823f2a2014-04-08 14:53:42 -07003OUTPUT_FORMAT("elf32-bigarm", "elf32-bigarm",
4 "elf32-littlearm")
5OUTPUT_ARCH(arm)
6ENTRY(_start)
7SECTIONS
8{
9 /* Read-only sections, merged into text segment: */
Ben Cheng79781f52014-05-19 10:33:46 -070010 . = 0 + SIZEOF_HEADERS;
Ben Cheng7823f2a2014-04-08 14:53:42 -070011 .note.gnu.build-id : { *(.note.gnu.build-id) }
12 .hash : { *(.hash) }
13 .gnu.hash : { *(.gnu.hash) }
14 .dynsym : { *(.dynsym) }
15 .dynstr : { *(.dynstr) }
16 .gnu.version : { *(.gnu.version) }
17 .gnu.version_d : { *(.gnu.version_d) }
18 .gnu.version_r : { *(.gnu.version_r) }
19 .rel.dyn :
20 {
21 *(.rel.init)
22 *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
23 *(.rel.fini)
24 *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*)
25 *(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*)
26 *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*)
27 *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*)
28 *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*)
29 *(.rel.ctors)
30 *(.rel.dtors)
31 *(.rel.got)
32 *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*)
33 *(.rel.iplt)
34 }
35 .rela.dyn :
36 {
37 *(.rela.init)
38 *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
39 *(.rela.fini)
40 *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
41 *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
42 *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
43 *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
44 *(.rela.ctors)
45 *(.rela.dtors)
46 *(.rela.got)
47 *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
48 *(.rela.iplt)
49 }
50 .rel.plt :
51 {
52 *(.rel.plt)
53 }
54 .rela.plt :
55 {
56 *(.rela.plt)
57 }
58 .init :
59 {
60 KEEP (*(SORT_NONE(.init)))
61 }
62 .plt : { *(.plt) }
63 .iplt : { *(.iplt) }
64 .text :
65 {
66 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
67 *(.text.exit .text.exit.*)
68 *(.text.startup .text.startup.*)
69 *(.text.hot .text.hot.*)
70 *(.text .stub .text.* .gnu.linkonce.t.*)
71 /* .gnu.warning sections are handled specially by elf32.em. */
72 *(.gnu.warning)
73 *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx)
74 }
75 .fini :
76 {
77 KEEP (*(SORT_NONE(.fini)))
78 }
79 PROVIDE (__etext = .);
80 PROVIDE (_etext = .);
81 PROVIDE (etext = .);
82 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
83 .rodata1 : { *(.rodata1) }
84 .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) }
85 PROVIDE_HIDDEN (__exidx_start = .);
86 .ARM.exidx : { *(.ARM.exidx* .gnu.linkonce.armexidx.*) }
87 PROVIDE_HIDDEN (__exidx_end = .);
88 .eh_frame_hdr : { *(.eh_frame_hdr) }
89 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
90 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
91 .gcc_except_table.*) }
92 /* These sections are generated by the Sun/Oracle C++ compiler. */
93 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
94 .exception_ranges*) }
Ben Cheng79781f52014-05-19 10:33:46 -070095 /* Adjust the address for the data segment. For 32 bits we want to align
96 at exactly a page boundary to make life easier for apriori. */
Ben Cheng7823f2a2014-04-08 14:53:42 -070097 . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
98 /* Exception handling */
99 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
100 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
101 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
102 /* Thread Local Storage sections */
103 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
104 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
Ben Cheng79781f52014-05-19 10:33:46 -0700105 /* Ensure the __preinit_array_start label is properly aligned. We
106 could instead move the label definition inside the section, but
107 the linker would then create the section even if it turns out to
108 be empty, which isn't pretty. */
109 . = ALIGN(32 / 8);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700110 .preinit_array :
111 {
112 KEEP (*(.preinit_array))
113 }
114 .init_array :
115 {
Ben Cheng79781f52014-05-19 10:33:46 -0700116 KEEP (*crtbegin*.o(.init_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700117 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700118 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700119 }
120 .fini_array :
121 {
Ben Cheng79781f52014-05-19 10:33:46 -0700122 KEEP (*crtbegin*.o(.fini_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700123 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700124 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700125 }
126 .ctors :
127 {
128 /* gcc uses crtbegin.o to find the start of
129 the constructors, so we make sure it is
130 first. Because this is a wildcard, it
131 doesn't matter if the user does not
132 actually link against crtbegin.o; the
133 linker won't look for a file to match a
134 wildcard. The wildcard also means that it
135 doesn't matter which directory crtbegin.o
136 is in. */
137 KEEP (*crtbegin.o(.ctors))
Ben Cheng79781f52014-05-19 10:33:46 -0700138 KEEP (*crtbegin*.o(.ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700139 /* We don't want to include the .ctor section from
140 the crtend.o file until after the sorted ctors.
141 The .ctor section from the crtend file contains the
142 end of ctors marker and it must be last */
Ben Cheng79781f52014-05-19 10:33:46 -0700143 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700144 KEEP (*(SORT(.ctors.*)))
145 KEEP (*(.ctors))
146 }
147 .dtors :
148 {
149 KEEP (*crtbegin.o(.dtors))
Ben Cheng79781f52014-05-19 10:33:46 -0700150 KEEP (*crtbegin*.o(.dtors))
151 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700152 KEEP (*(SORT(.dtors.*)))
153 KEEP (*(.dtors))
154 }
155 .jcr : { KEEP (*(.jcr)) }
156 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
157 .dynamic : { *(.dynamic) }
158 .got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
159 .data :
160 {
161 __data_start = . ;
162 *(.data .data.* .gnu.linkonce.d.*)
163 SORT(CONSTRUCTORS)
164 }
165 .data1 : { *(.data1) }
166 _edata = .; PROVIDE (edata = .);
167 . = .;
168 __bss_start = .;
169 __bss_start__ = .;
170 .bss :
171 {
172 *(.dynbss)
173 *(.bss .bss.* .gnu.linkonce.b.*)
174 *(COMMON)
175 /* Align here to ensure that the .bss section occupies space up to
176 _end. Align after .bss to ensure correct alignment even if the
Ben Cheng79781f52014-05-19 10:33:46 -0700177 .bss section disappears because there are no input sections. */
178 . = ALIGN(32 / 8);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700179 }
180 _bss_end__ = . ; __bss_end__ = . ;
181 . = ALIGN(32 / 8);
182 . = SEGMENT_START("ldata-segment", .);
183 . = ALIGN(32 / 8);
184 __end__ = . ;
Ben Cheng79781f52014-05-19 10:33:46 -0700185 _end = .;
186 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
187 PROVIDE (end = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700188 /* Stabs debugging sections. */
189 .stab 0 : { *(.stab) }
190 .stabstr 0 : { *(.stabstr) }
191 .stab.excl 0 : { *(.stab.excl) }
192 .stab.exclstr 0 : { *(.stab.exclstr) }
193 .stab.index 0 : { *(.stab.index) }
194 .stab.indexstr 0 : { *(.stab.indexstr) }
195 .comment 0 : { *(.comment) }
196 /* DWARF debug sections.
197 Symbols in the DWARF debugging sections are relative to the beginning
198 of the section so we begin them at 0. */
199 /* DWARF 1 */
200 .debug 0 : { *(.debug) }
201 .line 0 : { *(.line) }
202 /* GNU DWARF 1 extensions */
203 .debug_srcinfo 0 : { *(.debug_srcinfo) }
204 .debug_sfnames 0 : { *(.debug_sfnames) }
205 /* DWARF 1.1 and DWARF 2 */
206 .debug_aranges 0 : { *(.debug_aranges) }
207 .debug_pubnames 0 : { *(.debug_pubnames) }
208 /* DWARF 2 */
209 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
210 .debug_abbrev 0 : { *(.debug_abbrev) }
211 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
212 .debug_frame 0 : { *(.debug_frame) }
213 .debug_str 0 : { *(.debug_str) }
214 .debug_loc 0 : { *(.debug_loc) }
215 .debug_macinfo 0 : { *(.debug_macinfo) }
216 /* SGI/MIPS DWARF 2 extensions */
217 .debug_weaknames 0 : { *(.debug_weaknames) }
218 .debug_funcnames 0 : { *(.debug_funcnames) }
219 .debug_typenames 0 : { *(.debug_typenames) }
220 .debug_varnames 0 : { *(.debug_varnames) }
221 /* DWARF 3 */
222 .debug_pubtypes 0 : { *(.debug_pubtypes) }
223 .debug_ranges 0 : { *(.debug_ranges) }
224 /* DWARF Extension. */
225 .debug_macro 0 : { *(.debug_macro) }
226 .stack 0x80000 :
227 {
228 _stack = .;
229 *(.stack)
230 }
231 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
232 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
Ben Cheng79781f52014-05-19 10:33:46 -0700233 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -0700234}