blob: 02f62b84a9beb96e8d27aaf7f5ccccea436cdcdb [file] [log] [blame]
Ben Cheng7823f2a2014-04-08 14:53:42 -07001/* Script for --shared -z combreloc -z now -z relro: shared library, combine & sort relocs */
2OUTPUT_FORMAT("elf32-bigaarch64", "elf32-bigaarch64",
3 "elf32-littleaarch64")
4OUTPUT_ARCH(aarch64:ilp32)
5ENTRY(_start)
6SEARCH_DIR("/tmp/toolchain-build-aarch64-linux-4.9/prefix/aarch64-linux-android/lib32"); SEARCH_DIR("=/usr/local/lib32"); SEARCH_DIR("=/lib32"); SEARCH_DIR("=/usr/lib32"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib");
7SECTIONS
8{
9 /* Read-only sections, merged into text segment: */
10 . = SEGMENT_START("text-segment", 0) + SIZEOF_HEADERS;
11 .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 .rela.dyn :
20 {
21 *(.rela.init)
22 *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
23 *(.rela.fini)
24 *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
25 *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
26 *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
27 *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
28 *(.rela.ctors)
29 *(.rela.dtors)
30 *(.rela.got)
31 *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
32 *(.rela.ifunc)
33 }
34 .rela.plt :
35 {
36 *(.rela.plt)
37 *(.rela.iplt)
38 }
39 .init :
40 {
41 KEEP (*(SORT_NONE(.init)))
42 } =0
43 .plt : ALIGN(16) { *(.plt) *(.iplt) }
44 .text :
45 {
46 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
47 *(.text.exit .text.exit.*)
48 *(.text.startup .text.startup.*)
49 *(.text.hot .text.hot.*)
50 *(.text .stub .text.* .gnu.linkonce.t.*)
51 /* .gnu.warning sections are handled specially by elf32.em. */
52 *(.gnu.warning)
53 } =0
54 .fini :
55 {
56 KEEP (*(SORT_NONE(.fini)))
57 } =0
58 PROVIDE (__etext = .);
59 PROVIDE (_etext = .);
60 PROVIDE (etext = .);
61 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
62 .rodata1 : { *(.rodata1) }
63 .eh_frame_hdr : { *(.eh_frame_hdr) }
64 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
65 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
66 .gcc_except_table.*) }
67 /* These sections are generated by the Sun/Oracle C++ compiler. */
68 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
69 .exception_ranges*) }
70 /* Adjust the address for the data segment. We want to adjust up to
71 the same address within the page on the next page up. */
72 . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
73 /* Exception handling */
74 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
75 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
76 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
77 /* Thread Local Storage sections */
78 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
79 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
80 .preinit_array :
81 {
82 KEEP (*(.preinit_array))
83 }
84 .init_array :
85 {
86 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
87 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
88 }
89 .fini_array :
90 {
91 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
92 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
93 }
94 .ctors :
95 {
96 /* gcc uses crtbegin.o to find the start of
97 the constructors, so we make sure it is
98 first. Because this is a wildcard, it
99 doesn't matter if the user does not
100 actually link against crtbegin.o; the
101 linker won't look for a file to match a
102 wildcard. The wildcard also means that it
103 doesn't matter which directory crtbegin.o
104 is in. */
105 KEEP (*crtbegin.o(.ctors))
106 KEEP (*crtbegin?.o(.ctors))
107 /* We don't want to include the .ctor section from
108 the crtend.o file until after the sorted ctors.
109 The .ctor section from the crtend file contains the
110 end of ctors marker and it must be last */
111 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
112 KEEP (*(SORT(.ctors.*)))
113 KEEP (*(.ctors))
114 }
115 .dtors :
116 {
117 KEEP (*crtbegin.o(.dtors))
118 KEEP (*crtbegin?.o(.dtors))
119 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
120 KEEP (*(SORT(.dtors.*)))
121 KEEP (*(.dtors))
122 }
123 .jcr : { KEEP (*(.jcr)) }
124 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
125 .dynamic : { *(.dynamic) }
126 .got : { *(.got.plt) *(.igot.plt) *(.got) *(.igot) }
127 . = DATA_SEGMENT_RELRO_END (0, .);
128 .data :
129 {
130 PROVIDE (__data_start = .);
131 *(.data .data.* .gnu.linkonce.d.*)
132 SORT(CONSTRUCTORS)
133 }
134 .data1 : { *(.data1) }
135 _edata = .; PROVIDE (edata = .);
136 . = .;
137 __bss_start = .;
138 __bss_start__ = .;
139 .bss :
140 {
141 *(.dynbss)
142 *(.bss .bss.* .gnu.linkonce.b.*)
143 *(COMMON)
144 /* Align here to ensure that the .bss section occupies space up to
145 _end. Align after .bss to ensure correct alignment even if the
146 .bss section disappears because there are no input sections.
147 FIXME: Why do we need it? When there is no .bss section, we don't
148 pad the .data section. */
149 . = ALIGN(. != 0 ? 32 / 8 : 1);
150 }
151 _bss_end__ = . ; __bss_end__ = . ;
152 . = ALIGN(32 / 8);
153 . = SEGMENT_START("ldata-segment", .);
154 . = ALIGN(32 / 8);
155 __end__ = . ;
156 _end = .; PROVIDE (end = .);
157 . = DATA_SEGMENT_END (.);
158 /* Stabs debugging sections. */
159 .stab 0 : { *(.stab) }
160 .stabstr 0 : { *(.stabstr) }
161 .stab.excl 0 : { *(.stab.excl) }
162 .stab.exclstr 0 : { *(.stab.exclstr) }
163 .stab.index 0 : { *(.stab.index) }
164 .stab.indexstr 0 : { *(.stab.indexstr) }
165 .comment 0 : { *(.comment) }
166 /* DWARF debug sections.
167 Symbols in the DWARF debugging sections are relative to the beginning
168 of the section so we begin them at 0. */
169 /* DWARF 1 */
170 .debug 0 : { *(.debug) }
171 .line 0 : { *(.line) }
172 /* GNU DWARF 1 extensions */
173 .debug_srcinfo 0 : { *(.debug_srcinfo) }
174 .debug_sfnames 0 : { *(.debug_sfnames) }
175 /* DWARF 1.1 and DWARF 2 */
176 .debug_aranges 0 : { *(.debug_aranges) }
177 .debug_pubnames 0 : { *(.debug_pubnames) }
178 /* DWARF 2 */
179 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
180 .debug_abbrev 0 : { *(.debug_abbrev) }
181 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
182 .debug_frame 0 : { *(.debug_frame) }
183 .debug_str 0 : { *(.debug_str) }
184 .debug_loc 0 : { *(.debug_loc) }
185 .debug_macinfo 0 : { *(.debug_macinfo) }
186 /* SGI/MIPS DWARF 2 extensions */
187 .debug_weaknames 0 : { *(.debug_weaknames) }
188 .debug_funcnames 0 : { *(.debug_funcnames) }
189 .debug_typenames 0 : { *(.debug_typenames) }
190 .debug_varnames 0 : { *(.debug_varnames) }
191 /* DWARF 3 */
192 .debug_pubtypes 0 : { *(.debug_pubtypes) }
193 .debug_ranges 0 : { *(.debug_ranges) }
194 /* DWARF Extension. */
195 .debug_macro 0 : { *(.debug_macro) }
196 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
197 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
198 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
199}