blob: 710ae81950a0376fdef6a01fe9b41ffc75c62a52 [file] [log] [blame]
Ben Cheng7823f2a2014-04-08 14:53:42 -07001/* Script for ld --shared: link shared library */
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -07002/* Copyright (C) 2014-2016 Free Software Foundation, Inc.
Rong Xue1a8a482015-04-08 12:48:42 -07003 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. */
Ben Cheng7823f2a2014-04-08 14:53:42 -07006OUTPUT_FORMAT("elf32-littleaarch64", "elf32-bigaarch64",
7 "elf32-littleaarch64")
8OUTPUT_ARCH(aarch64:ilp32)
9ENTRY(_start)
Rahul Chaudhry0d76fe42018-03-19 20:15:55 +000010SEARCH_DIR("=/tmp/ec08fa09236e3161f186f0ecaf2224fb/aarch64-linux-android/lib");
Ben Cheng7823f2a2014-04-08 14:53:42 -070011SECTIONS
12{
13 /* Read-only sections, merged into text segment: */
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070014 . = SEGMENT_START("text-segment", 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 .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.ifunc : { *(.rela.ifunc) }
36 .rela.plt :
37 {
38 *(.rela.plt)
39 *(.rela.iplt)
40 }
41 .init :
42 {
43 KEEP (*(SORT_NONE(.init)))
44 } =0
45 .plt : { *(.plt) *(.iplt) }
46 .text :
47 {
48 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
49 *(.text.exit .text.exit.*)
50 *(.text.startup .text.startup.*)
51 *(.text.hot .text.hot.*)
52 *(.text .stub .text.* .gnu.linkonce.t.*)
53 /* .gnu.warning sections are handled specially by elf32.em. */
54 *(.gnu.warning)
55 } =0
56 .fini :
57 {
58 KEEP (*(SORT_NONE(.fini)))
59 } =0
60 PROVIDE (__etext = .);
61 PROVIDE (_etext = .);
62 PROVIDE (etext = .);
63 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
64 .rodata1 : { *(.rodata1) }
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070065 .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
66 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -070067 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
68 .gcc_except_table.*) }
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070069 .gnu_extab : ONLY_IF_RO { *(.gnu_extab*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -070070 /* These sections are generated by the Sun/Oracle C++ compiler. */
71 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
72 .exception_ranges*) }
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070073 /* Adjust the address for the data segment. We want to adjust up to
74 the same address within the page on the next page up. */
Ben Cheng7823f2a2014-04-08 14:53:42 -070075 . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
76 /* Exception handling */
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070077 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
78 .gnu_extab : ONLY_IF_RW { *(.gnu_extab) }
Ben Cheng7823f2a2014-04-08 14:53:42 -070079 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
80 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
81 /* Thread Local Storage sections */
82 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
83 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
84 .preinit_array :
85 {
86 KEEP (*(.preinit_array))
87 }
88 .init_array :
89 {
90 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070091 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -070092 }
93 .fini_array :
94 {
95 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -070096 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -070097 }
98 .ctors :
99 {
100 /* gcc uses crtbegin.o to find the start of
101 the constructors, so we make sure it is
102 first. Because this is a wildcard, it
103 doesn't matter if the user does not
104 actually link against crtbegin.o; the
105 linker won't look for a file to match a
106 wildcard. The wildcard also means that it
107 doesn't matter which directory crtbegin.o
108 is in. */
109 KEEP (*crtbegin.o(.ctors))
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700110 KEEP (*crtbegin?.o(.ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700111 /* We don't want to include the .ctor section from
112 the crtend.o file until after the sorted ctors.
113 The .ctor section from the crtend file contains the
114 end of ctors marker and it must be last */
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700115 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700116 KEEP (*(SORT(.ctors.*)))
117 KEEP (*(.ctors))
118 }
119 .dtors :
120 {
121 KEEP (*crtbegin.o(.dtors))
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700122 KEEP (*crtbegin?.o(.dtors))
123 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
Ben Cheng7823f2a2014-04-08 14:53:42 -0700124 KEEP (*(SORT(.dtors.*)))
125 KEEP (*(.dtors))
126 }
127 .jcr : { KEEP (*(.jcr)) }
128 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
129 .dynamic : { *(.dynamic) }
130 .got : { *(.got) *(.igot) }
131 .got.plt : { *(.got.plt) *(.igot.plt) }
132 .data :
133 {
134 __data_start = . ;
135 *(.data .data.* .gnu.linkonce.d.*)
136 SORT(CONSTRUCTORS)
137 }
138 .data1 : { *(.data1) }
139 _edata = .; PROVIDE (edata = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700140 __bss_start = .;
141 __bss_start__ = .;
142 .bss :
143 {
144 *(.dynbss)
145 *(.bss .bss.* .gnu.linkonce.b.*)
146 *(COMMON)
147 /* Align here to ensure that the .bss section occupies space up to
148 _end. Align after .bss to ensure correct alignment even if the
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700149 .bss section disappears because there are no input sections.
150 FIXME: Why do we need it? When there is no .bss section, we don't
151 pad the .data section. */
152 . = ALIGN(. != 0 ? 32 / 8 : 1);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700153 }
154 _bss_end__ = . ; __bss_end__ = . ;
155 . = ALIGN(32 / 8);
156 . = SEGMENT_START("ldata-segment", .);
157 . = ALIGN(32 / 8);
158 __end__ = . ;
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700159 _end = .; PROVIDE (end = .);
Ben Cheng7823f2a2014-04-08 14:53:42 -0700160 /* Stabs debugging sections. */
161 .stab 0 : { *(.stab) }
162 .stabstr 0 : { *(.stabstr) }
163 .stab.excl 0 : { *(.stab.excl) }
164 .stab.exclstr 0 : { *(.stab.exclstr) }
165 .stab.index 0 : { *(.stab.index) }
166 .stab.indexstr 0 : { *(.stab.indexstr) }
167 .comment 0 : { *(.comment) }
168 /* DWARF debug sections.
169 Symbols in the DWARF debugging sections are relative to the beginning
170 of the section so we begin them at 0. */
171 /* DWARF 1 */
172 .debug 0 : { *(.debug) }
173 .line 0 : { *(.line) }
174 /* GNU DWARF 1 extensions */
175 .debug_srcinfo 0 : { *(.debug_srcinfo) }
176 .debug_sfnames 0 : { *(.debug_sfnames) }
177 /* DWARF 1.1 and DWARF 2 */
178 .debug_aranges 0 : { *(.debug_aranges) }
179 .debug_pubnames 0 : { *(.debug_pubnames) }
180 /* DWARF 2 */
181 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
182 .debug_abbrev 0 : { *(.debug_abbrev) }
183 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
184 .debug_frame 0 : { *(.debug_frame) }
185 .debug_str 0 : { *(.debug_str) }
186 .debug_loc 0 : { *(.debug_loc) }
187 .debug_macinfo 0 : { *(.debug_macinfo) }
188 /* SGI/MIPS DWARF 2 extensions */
189 .debug_weaknames 0 : { *(.debug_weaknames) }
190 .debug_funcnames 0 : { *(.debug_funcnames) }
191 .debug_typenames 0 : { *(.debug_typenames) }
192 .debug_varnames 0 : { *(.debug_varnames) }
193 /* DWARF 3 */
194 .debug_pubtypes 0 : { *(.debug_pubtypes) }
195 .debug_ranges 0 : { *(.debug_ranges) }
196 /* DWARF Extension. */
197 .debug_macro 0 : { *(.debug_macro) }
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700198 .debug_addr 0 : { *(.debug_addr) }
Ben Cheng7823f2a2014-04-08 14:53:42 -0700199 .stack 0x80000 :
200 {
201 _stack = .;
202 *(.stack)
203 }
204 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
205 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
Rahul Chaudhry2d4cbf62017-09-18 10:30:53 -0700206 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
Ben Cheng7823f2a2014-04-08 14:53:42 -0700207}