blob: 48aa6b36bf387cdd4884a5377aa5ced85ba3a395 [file] [log] [blame]
Ben Cheng7823f2a2014-04-08 14:53:42 -07001/* Default linker script, for normal executables */
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("elf64-littleaarch64", "elf64-bigaarch64",
8 "elf64-littleaarch64")
9OUTPUT_ARCH(aarch64)
10ENTRY(_start)
11SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
Ben Cheng79781f52014-05-19 10:33:46 -070014 PROVIDE (__executable_start = 0x00400000); . = 0x00400000;
Ben Cheng7823f2a2014-04-08 14:53:42 -070015 .interp : { *(.interp) }
16 .note.gnu.build-id : { *(.note.gnu.build-id) }
17 .hash : { *(.hash) }
18 .gnu.hash : { *(.gnu.hash) }
19 .dynsym : { *(.dynsym) }
20 .dynstr : { *(.dynstr) }
21 .gnu.version : { *(.gnu.version) }
22 .gnu.version_d : { *(.gnu.version_d) }
23 .gnu.version_r : { *(.gnu.version_r) }
24 .rela.init : { *(.rela.init) }
25 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
26 .rela.fini : { *(.rela.fini) }
27 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
28 .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
29 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
30 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
31 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
32 .rela.ctors : { *(.rela.ctors) }
33 .rela.dtors : { *(.rela.dtors) }
34 .rela.got : { *(.rela.got) }
35 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
36 .rela.ifunc : { *(.rela.ifunc) }
37 .rela.plt :
38 {
39 *(.rela.plt)
40 PROVIDE_HIDDEN (__rela_iplt_start = .);
41 *(.rela.iplt)
42 PROVIDE_HIDDEN (__rela_iplt_end = .);
43 }
44 .init :
45 {
46 KEEP (*(SORT_NONE(.init)))
47 } =0
48 .plt : { *(.plt) *(.iplt) }
49 .text :
50 {
51 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
52 *(.text.exit .text.exit.*)
53 *(.text.startup .text.startup.*)
54 *(.text.hot .text.hot.*)
55 *(.text .stub .text.* .gnu.linkonce.t.*)
56 /* .gnu.warning sections are handled specially by elf32.em. */
57 *(.gnu.warning)
58 } =0
59 .fini :
60 {
61 KEEP (*(SORT_NONE(.fini)))
62 } =0
63 PROVIDE (__etext = .);
64 PROVIDE (_etext = .);
65 PROVIDE (etext = .);
66 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
67 .rodata1 : { *(.rodata1) }
68 .eh_frame_hdr : { *(.eh_frame_hdr) }
69 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
70 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
71 .gcc_except_table.*) }
72 /* These sections are generated by the Sun/Oracle C++ compiler. */
73 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
74 .exception_ranges*) }
Ben Cheng79781f52014-05-19 10:33:46 -070075 /* Adjust the address for the data segment. For 32 bits we want to align
76 at exactly a page boundary to make life easier for apriori. */
Ben Cheng7823f2a2014-04-08 14:53:42 -070077 . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
78 /* Exception handling */
79 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
80 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
81 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
82 /* Thread Local Storage sections */
83 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
84 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
Ben Cheng79781f52014-05-19 10:33:46 -070085 /* Ensure the __preinit_array_start label is properly aligned. We
86 could instead move the label definition inside the section, but
87 the linker would then create the section even if it turns out to
88 be empty, which isn't pretty. */
Rong Xua1f277f2014-09-05 13:42:16 -070089 . = ALIGN(64 / 8);
Ben Cheng79781f52014-05-19 10:33:46 -070090 PROVIDE_HIDDEN (__preinit_array_start = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -070091 .preinit_array :
92 {
Ben Cheng7823f2a2014-04-08 14:53:42 -070093 KEEP (*(.preinit_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -070094 }
Ben Cheng79781f52014-05-19 10:33:46 -070095 PROVIDE_HIDDEN (__preinit_array_end = .);
96 PROVIDE_HIDDEN (__init_array_start = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -070097 .init_array :
98 {
Ben Cheng79781f52014-05-19 10:33:46 -070099 KEEP (*crtbegin*.o(.init_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700100 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700101 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700102 }
Ben Cheng79781f52014-05-19 10:33:46 -0700103 PROVIDE_HIDDEN (__init_array_end = .);
104 PROVIDE_HIDDEN (__fini_array_start = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700105 .fini_array :
106 {
Ben Cheng79781f52014-05-19 10:33:46 -0700107 KEEP (*crtbegin*.o(.fini_array))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700108 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
Ben Cheng79781f52014-05-19 10:33:46 -0700109 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700110 }
Ben Cheng79781f52014-05-19 10:33:46 -0700111 PROVIDE_HIDDEN (__fini_array_end = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700112 .ctors :
113 {
114 /* gcc uses crtbegin.o to find the start of
115 the constructors, so we make sure it is
116 first. Because this is a wildcard, it
117 doesn't matter if the user does not
118 actually link against crtbegin.o; the
119 linker won't look for a file to match a
120 wildcard. The wildcard also means that it
121 doesn't matter which directory crtbegin.o
122 is in. */
123 KEEP (*crtbegin.o(.ctors))
Ben Cheng79781f52014-05-19 10:33:46 -0700124 KEEP (*crtbegin*.o(.ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700125 /* We don't want to include the .ctor section from
126 the crtend.o file until after the sorted ctors.
127 The .ctor section from the crtend file contains the
128 end of ctors marker and it must be last */
Ben Cheng79781f52014-05-19 10:33:46 -0700129 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700130 KEEP (*(SORT(.ctors.*)))
131 KEEP (*(.ctors))
132 }
133 .dtors :
134 {
135 KEEP (*crtbegin.o(.dtors))
Ben Cheng79781f52014-05-19 10:33:46 -0700136 KEEP (*crtbegin*.o(.dtors))
137 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700138 KEEP (*(SORT(.dtors.*)))
139 KEEP (*(.dtors))
140 }
141 .jcr : { KEEP (*(.jcr)) }
142 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
143 .dynamic : { *(.dynamic) }
144 .got : { *(.got) *(.igot) }
145 .got.plt : { *(.got.plt) *(.igot.plt) }
146 .data :
147 {
148 __data_start = . ;
149 *(.data .data.* .gnu.linkonce.d.*)
150 SORT(CONSTRUCTORS)
151 }
152 .data1 : { *(.data1) }
153 _edata = .; PROVIDE (edata = .);
154 . = .;
155 __bss_start = .;
156 __bss_start__ = .;
157 .bss :
158 {
159 *(.dynbss)
160 *(.bss .bss.* .gnu.linkonce.b.*)
161 *(COMMON)
162 /* Align here to ensure that the .bss section occupies space up to
163 _end. Align after .bss to ensure correct alignment even if the
Ben Cheng79781f52014-05-19 10:33:46 -0700164 .bss section disappears because there are no input sections. */
165 . = ALIGN(64 / 8);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700166 }
167 _bss_end__ = . ; __bss_end__ = . ;
168 . = ALIGN(64 / 8);
169 . = SEGMENT_START("ldata-segment", .);
170 . = ALIGN(64 / 8);
171 __end__ = . ;
Ben Cheng79781f52014-05-19 10:33:46 -0700172 _end = .;
173 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
174 PROVIDE (end = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700175 /* Stabs debugging sections. */
176 .stab 0 : { *(.stab) }
177 .stabstr 0 : { *(.stabstr) }
178 .stab.excl 0 : { *(.stab.excl) }
179 .stab.exclstr 0 : { *(.stab.exclstr) }
180 .stab.index 0 : { *(.stab.index) }
181 .stab.indexstr 0 : { *(.stab.indexstr) }
182 .comment 0 : { *(.comment) }
183 /* DWARF debug sections.
184 Symbols in the DWARF debugging sections are relative to the beginning
185 of the section so we begin them at 0. */
186 /* DWARF 1 */
187 .debug 0 : { *(.debug) }
188 .line 0 : { *(.line) }
189 /* GNU DWARF 1 extensions */
190 .debug_srcinfo 0 : { *(.debug_srcinfo) }
191 .debug_sfnames 0 : { *(.debug_sfnames) }
192 /* DWARF 1.1 and DWARF 2 */
193 .debug_aranges 0 : { *(.debug_aranges) }
194 .debug_pubnames 0 : { *(.debug_pubnames) }
195 /* DWARF 2 */
196 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
197 .debug_abbrev 0 : { *(.debug_abbrev) }
198 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
199 .debug_frame 0 : { *(.debug_frame) }
200 .debug_str 0 : { *(.debug_str) }
201 .debug_loc 0 : { *(.debug_loc) }
202 .debug_macinfo 0 : { *(.debug_macinfo) }
203 /* SGI/MIPS DWARF 2 extensions */
204 .debug_weaknames 0 : { *(.debug_weaknames) }
205 .debug_funcnames 0 : { *(.debug_funcnames) }
206 .debug_typenames 0 : { *(.debug_typenames) }
207 .debug_varnames 0 : { *(.debug_varnames) }
208 /* DWARF 3 */
209 .debug_pubtypes 0 : { *(.debug_pubtypes) }
210 .debug_ranges 0 : { *(.debug_ranges) }
211 /* DWARF Extension. */
212 .debug_macro 0 : { *(.debug_macro) }
213 .stack 0x80000 :
214 {
215 _stack = .;
216 *(.stack)
217 }
218 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
219 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
Ben Cheng79781f52014-05-19 10:33:46 -0700220 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -0700221}