* elf32-arm.c (elf_backend_default_use_rela_p): Define to zero for
[external/binutils.git] / ld / scripttempl / armbpabi.sc
1 # This variant of elf.sc is used for ARM BPABI platforms, like Symbian
2 # OS, where a separate postlinker will operated on the generated
3 # executable or shared object.  See elf.sc for configuration variables
4 # that apply; only BPABI-specific variables will be noted here.
5
6 test -z "$ENTRY" && ENTRY=_start
7 test -z "${BIG_OUTPUT_FORMAT}" && BIG_OUTPUT_FORMAT=${OUTPUT_FORMAT}
8 test -z "${LITTLE_OUTPUT_FORMAT}" && LITTLE_OUTPUT_FORMAT=${OUTPUT_FORMAT}
9 if [ -z "$MACHINE" ]; then OUTPUT_ARCH=${ARCH}; else OUTPUT_ARCH=${ARCH}:${MACHINE}; fi
10 test -z "${ELFSIZE}" && ELFSIZE=32
11 test -z "${ALIGNMENT}" && ALIGNMENT="${ELFSIZE} / 8"
12 test "$LD_FLAG" = "N" && DATA_ADDR=.
13 test -n "$CREATE_SHLIB$CREATE_PIE" && test -n "$SHLIB_DATA_ADDR" && COMMONPAGESIZE=""
14 test -z "$CREATE_SHLIB$CREATE_PIE" && test -n "$DATA_ADDR" && COMMONPAGESIZE=""
15 test -n "$RELRO_NOW" && unset SEPARATE_GOTPLT
16 DATA_SEGMENT_ALIGN="ALIGN(${SEGMENT_SIZE}) + (. & (${MAXPAGESIZE} - 1))"
17 DATA_SEGMENT_RELRO_END=""
18 DATA_SEGMENT_RELRO_GOTPLT_END=""
19 DATA_SEGMENT_END=""
20 if test -n "${COMMONPAGESIZE}"; then
21   DATA_SEGMENT_ALIGN="ALIGN (${SEGMENT_SIZE}) - ((${MAXPAGESIZE} - .) & (${MAXPAGESIZE} - 1)); . = DATA_SEGMENT_ALIGN (${MAXPAGESIZE}, ${COMMONPAGESIZE})"
22   DATA_SEGMENT_END=". = DATA_SEGMENT_END (.);"
23   if test -n "${SEPARATE_GOTPLT}"; then
24     DATA_SEGMENT_RELRO_GOTPLT_END=". = DATA_SEGMENT_RELRO_END (. + ${SEPARATE_GOTPLT});"
25   else
26     DATA_SEGMENT_RELRO_END=". = DATA_SEGMENT_RELRO_END (.);"
27   fi
28 fi
29 INTERP=".interp       0 : { *(.interp) }"
30 PLT=".plt          ${RELOCATING-0} : { *(.plt) }"
31 RODATA=".rodata       ${RELOCATING-0} : { *(.rodata${RELOCATING+ .rodata.* .gnu.linkonce.r.*}) }"
32 DATARELRO=".data.rel.ro : { *(.data.rel.ro.local) *(.data.rel.ro*) }"
33 STACKNOTE="/DISCARD/ : { *(.note.GNU-stack) }"
34 if test -z "${NO_SMALL_DATA}"; then
35   SBSS=".sbss         ${RELOCATING-0} :
36   {
37     ${RELOCATING+PROVIDE (__sbss_start = .);}
38     ${RELOCATING+PROVIDE (___sbss_start = .);}
39     *(.dynsbss)
40     *(.sbss${RELOCATING+ .sbss.* .gnu.linkonce.sb.*})
41     *(.scommon)
42     ${RELOCATING+PROVIDE (__sbss_end = .);}
43     ${RELOCATING+PROVIDE (___sbss_end = .);}
44   }"
45   SBSS2=".sbss2        ${RELOCATING-0} : { *(.sbss2${RELOCATING+ .sbss2.* .gnu.linkonce.sb2.*}) }"
46   SDATA="/* We want the small data sections together, so single-instruction offsets
47      can access them all, and initialized data all before uninitialized, so
48      we can shorten the on-disk segment size.  */
49   .sdata        ${RELOCATING-0} : 
50   {
51     ${RELOCATING+${SDATA_START_SYMBOLS}}
52     *(.sdata${RELOCATING+ .sdata.* .gnu.linkonce.s.*})
53   }"
54   SDATA2=".sdata2       ${RELOCATING-0} : { *(.sdata2${RELOCATING+ .sdata2.* .gnu.linkonce.s2.*}) }"
55   REL_SDATA=".rel.sdata    ${RELOCATING-0} : { *(.rel.sdata${RELOCATING+ .rel.sdata.* .rel.gnu.linkonce.s.*}) }
56   .rela.sdata   ${RELOCATING-0} : { *(.rela.sdata${RELOCATING+ .rela.sdata.* .rela.gnu.linkonce.s.*}) }"
57   REL_SBSS=".rel.sbss     ${RELOCATING-0} : { *(.rel.sbss${RELOCATING+ .rel.sbss.* .rel.gnu.linkonce.sb.*}) }
58   .rela.sbss    ${RELOCATING-0} : { *(.rela.sbss${RELOCATING+ .rela.sbss.* .rela.gnu.linkonce.sb.*}) }"
59   REL_SDATA2=".rel.sdata2   ${RELOCATING-0} : { *(.rel.sdata2${RELOCATING+ .rel.sdata2.* .rel.gnu.linkonce.s2.*}) }
60   .rela.sdata2  ${RELOCATING-0} : { *(.rela.sdata2${RELOCATING+ .rela.sdata2.* .rela.gnu.linkonce.s2.*}) }"
61   REL_SBSS2=".rel.sbss2    ${RELOCATING-0} : { *(.rel.sbss2${RELOCATING+ .rel.sbss2.* .rel.gnu.linkonce.sb2.*}) }
62   .rela.sbss2   ${RELOCATING-0} : { *(.rela.sbss2${RELOCATING+ .rela.sbss2.* .rela.gnu.linkonce.sb2.*}) }"
63 else
64   NO_SMALL_DATA=" "
65 fi
66 test -n "$SEPARATE_GOTPLT" && SEPARATE_GOTPLT=" "
67 CTOR=".ctors        ${CONSTRUCTING-0} : 
68   {
69     ${CONSTRUCTING+${CTOR_START}}
70     /* gcc uses crtbegin.o to find the start of
71        the constructors, so we make sure it is
72        first.  Because this is a wildcard, it
73        doesn't matter if the user does not
74        actually link against crtbegin.o; the
75        linker won't look for a file to match a
76        wildcard.  The wildcard also means that it
77        doesn't matter which directory crtbegin.o
78        is in.  */
79
80     KEEP (*crtbegin*.o(.ctors))
81
82     /* We don't want to include the .ctor section from
83        from the crtend.o file until after the sorted ctors.
84        The .ctor section from the crtend file contains the
85        end of ctors marker and it must be last */
86
87     KEEP (*(EXCLUDE_FILE (*crtend*.o $OTHER_EXCLUDE_FILES) .ctors))
88     KEEP (*(SORT(.ctors.*)))
89     KEEP (*(.ctors))
90     ${CONSTRUCTING+${CTOR_END}}
91   }"
92 DTOR=".dtors        ${CONSTRUCTING-0} :
93   {
94     ${CONSTRUCTING+${DTOR_START}}
95     KEEP (*crtbegin*.o(.dtors))
96     KEEP (*(EXCLUDE_FILE (*crtend*.o $OTHER_EXCLUDE_FILES) .dtors))
97     KEEP (*(SORT(.dtors.*)))
98     KEEP (*(.dtors))
99     ${CONSTRUCTING+${DTOR_END}}
100   }"
101 STACK="  .stack        ${RELOCATING-0}${RELOCATING+${STACK_ADDR}} :
102   {
103     ${RELOCATING+_stack = .;}
104     *(.stack)
105   }"
106
107 TEXT_START_ADDR="SEGMENT_START(\"text\", ${TEXT_START_ADDR})"
108 SHLIB_TEXT_START_ADDR="SEGMENT_START(\"text\", ${SHLIB_TEXT_START_ADDR:-0})"
109 DATA_ADDR="SEGMENT_START(\"data\", ${DATA_ADDR-${DATA_SEGMENT_ALIGN}})"
110 SHLIB_DATA_ADDR="SEGMENT_START(\"data\", ${SHLIB_DATA_ADDR-${DATA_SEGMENT_ALIGN}})"
111
112 # if this is for an embedded system, don't add SIZEOF_HEADERS.
113 if [ -z "$EMBEDDED" ]; then
114    test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR} + SIZEOF_HEADERS"
115    SHLIB_BASE_ADDRESS="${SHLIB_TEXT_START_ADDR} + SIZEOF_HEADERS"
116 else
117    test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR}"
118    SHLIB_BASE_ADDRESS="${SHLIB_TEXT_START_ADDR}"
119 fi
120
121 cat <<EOF
122 OUTPUT_FORMAT("${OUTPUT_FORMAT}", "${BIG_OUTPUT_FORMAT}",
123               "${LITTLE_OUTPUT_FORMAT}")
124 OUTPUT_ARCH(${OUTPUT_ARCH})
125 ENTRY(${ENTRY})
126
127 ${RELOCATING+${LIB_SEARCH_DIRS}}
128 ${RELOCATING+/* Do we need any of these for elf?
129    __DYNAMIC = 0; ${STACKZERO+${STACKZERO}} ${SHLIB_PATH+${SHLIB_PATH}}  */}
130 ${RELOCATING+${EXECUTABLE_SYMBOLS}}
131 ${RELOCATING+${INPUT_FILES}}
132 ${RELOCATING- /* For some reason, the Solaris linker makes bad executables
133   if gld -r is used and the intermediate file has sections starting
134   at non-zero addresses.  Could be a Solaris ld bug, could be a GNU ld
135   bug.  But for now assigning the zero vmas works.  */}
136
137 SECTIONS
138 {
139   /* Read-only sections, merged into text segment: */
140   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+PROVIDE (__executable_start = ${TEXT_START_ADDR});}}}
141   /* SymbianOS uses this symbol.  */
142   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+PROVIDE (Image\$\$ER_RO\$\$Base = ${TEXT_START_ADDR});}}} 
143   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+ . = ${TEXT_BASE_ADDRESS};}}}
144   ${CREATE_SHLIB+${RELOCATING+. = ${SHLIB_BASE_ADDRESS};}}
145   ${CREATE_PIE+${RELOCATING+. = ${SHLIB_BASE_ADDRESS};}}
146   ${INITIAL_READONLY_SECTIONS}
147
148 EOF
149 cat <<EOF
150   .init         ${RELOCATING-0} : 
151   { 
152     ${RELOCATING+${INIT_START}}
153     KEEP (*(.init))
154     ${RELOCATING+${INIT_END}}
155   } =${NOP-0}
156   .text         ${RELOCATING-0} :
157   {
158     ${RELOCATING+${TEXT_START_SYMBOLS}}
159     *(.text .stub${RELOCATING+ .text.* .gnu.linkonce.t.*})
160     KEEP (*(.text.*personality*))
161     /* .gnu.warning sections are handled specially by elf32.em.  */
162     *(.gnu.warning)
163     ${RELOCATING+${OTHER_TEXT_SECTIONS}}
164   } =${NOP-0}
165   .fini         ${RELOCATING-0} :
166   {
167     ${RELOCATING+${FINI_START}}
168     KEEP (*(.fini))
169     ${RELOCATING+${FINI_END}}
170   } =${NOP-0}
171   /* The SymbianOS kernel requires that the PLT go at the end of the
172      text section.  */
173   ${DATA_PLT-${BSS_PLT-${PLT}}}
174   ${RELOCATING+PROVIDE (__etext = .);}
175   ${RELOCATING+PROVIDE (_etext = .);}
176   ${RELOCATING+PROVIDE (etext = .);}
177   /* SymbianOS uses this symbol.  */
178   ${RELOCATING+PROVIDE (Image\$\$ER_RO\$\$Limit = .);}
179   ${WRITABLE_RODATA-${RODATA}}
180   .rodata1      ${RELOCATING-0} : { *(.rodata1) }
181   ${CREATE_SHLIB-${SDATA2}}
182   ${CREATE_SHLIB-${SBSS2}}
183
184   /* On SymbianOS, put  .init_array and friends in the read-only
185      segment; there is no runtime relocation applied to these
186      arrays.  */
187
188   /* Ensure the __preinit_array_start label is properly aligned.  We
189      could instead move the label definition inside the section, but
190      the linker would then create the section even if it turns out to
191      be empty, which isn't pretty.  */
192   ${RELOCATING+. = ALIGN(${ALIGNMENT});}
193   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_start = .);}}
194   .preinit_array   ${RELOCATING-0} : { *(.preinit_array) }
195   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__preinit_array_end = .);}}
196
197   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_start = .);}}
198   /* SymbianOS uses this symbol.  */
199   ${RELOCATING+${CREATE_SHLIB-PROVIDE (SHT\$\$INIT_ARRAY\$\$Base = .);}}
200   .init_array   ${RELOCATING-0} : { *(.init_array) }
201   /* SymbianOS uses this symbol.  */
202   ${RELOCATING+${CREATE_SHLIB-PROVIDE (SHT\$\$INIT_ARRAY\$\$Limit = .);}}
203   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__init_array_end = .);}}
204
205   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__fini_array_start = .);}}
206   .fini_array   ${RELOCATING-0} : { *(.fini_array) }
207   ${RELOCATING+${CREATE_SHLIB-PROVIDE (__fini_array_end = .);}}
208
209   ${OTHER_READONLY_SECTIONS}
210   .eh_frame_hdr : { *(.eh_frame_hdr) }
211   .eh_frame     ${RELOCATING-0} : ONLY_IF_RO { KEEP (*(.eh_frame)) }
212   .gcc_except_table ${RELOCATING-0} : ONLY_IF_RO { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
213
214   /* Adjust the address for the data segment.  We want to adjust up to
215      the same address within the page on the next page up.  */
216   ${CREATE_SHLIB-${CREATE_PIE-${RELOCATING+. = ${DATA_ADDR};}}}
217   ${CREATE_SHLIB+${RELOCATING+. = ${SHLIB_DATA_ADDR};}}
218   ${CREATE_PIE+${RELOCATING+. = ${SHLIB_DATA_ADDR};}}
219
220   /* Exception handling  */
221   .eh_frame     ${RELOCATING-0} : ONLY_IF_RW { KEEP (*(.eh_frame)) }
222   .gcc_except_table ${RELOCATING-0} : ONLY_IF_RW { KEEP (*(.gcc_except_table)) *(.gcc_except_table.*) }
223
224   /* Thread Local Storage sections  */
225   .tdata        ${RELOCATING-0} : { *(.tdata${RELOCATING+ .tdata.* .gnu.linkonce.td.*}) }
226   .tbss         ${RELOCATING-0} : { *(.tbss${RELOCATING+ .tbss.* .gnu.linkonce.tb.*})${RELOCATING+ *(.tcommon)} }
227
228   ${RELOCATING+${CTOR}}
229   ${RELOCATING+${DTOR}}
230   .jcr          ${RELOCATING-0} : { KEEP (*(.jcr)) }
231
232   ${RELOCATING+${DATARELRO}}
233   ${OTHER_RELRO_SECTIONS}
234   ${RELOCATING+${DATA_SEGMENT_RELRO_END}}
235
236   ${DATA_PLT+${PLT_BEFORE_GOT-${PLT}}}
237
238   .data         ${RELOCATING-0} :
239   {
240     ${RELOCATING+${DATA_START_SYMBOLS}}
241     *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*})
242     KEEP (*(.gnu.linkonce.d.*personality*))
243     ${CONSTRUCTING+SORT(CONSTRUCTORS)}
244   }
245   .data1        ${RELOCATING-0} : { *(.data1) }
246   ${WRITABLE_RODATA+${RODATA}}
247   ${OTHER_READWRITE_SECTIONS}
248   ${DATA_PLT+${PLT_BEFORE_GOT+${PLT}}}
249   ${CREATE_SHLIB+${SDATA2}}
250   ${CREATE_SHLIB+${SBSS2}}
251   ${SDATA}
252   ${OTHER_SDATA_SECTIONS}
253   ${RELOCATING+_edata = .;}
254   ${RELOCATING+PROVIDE (edata = .);}
255   ${RELOCATING+. = DEFINED(__bss_segment_start) ? __bss_segment_start : .;}
256   ${RELOCATING+__bss_start = .;}
257   ${RELOCATING+${OTHER_BSS_SYMBOLS}}
258   ${SBSS}
259   ${BSS_PLT+${PLT}}
260   .bss          ${RELOCATING-0} :
261   {
262    *(.dynbss)
263    *(.bss${RELOCATING+ .bss.* .gnu.linkonce.b.*})
264    *(COMMON)
265    /* Align here to ensure that the .bss section occupies space up to
266       _end.  Align after .bss to ensure correct alignment even if the
267       .bss section disappears because there are no input sections.  */
268    ${RELOCATING+. = ALIGN(${ALIGNMENT});}
269   }
270   ${OTHER_BSS_SECTIONS}
271   ${RELOCATING+. = ALIGN(${ALIGNMENT});}
272   ${RELOCATING+_end = .;}
273   ${RELOCATING+${OTHER_BSS_END_SYMBOLS}}
274   ${RELOCATING+PROVIDE (end = .);}
275   ${RELOCATING+${DATA_SEGMENT_END}}
276
277   /* These sections are not mapped under the BPABI.  */
278   .dynamic      0 : { *(.dynamic) }
279   .hash         0 : { *(.hash) }
280   .dynsym       0 : { *(.dynsym) }
281   .dynstr       0 : { *(.dynstr) }
282   .gnu.version  0 : { *(.gnu.version) }
283   .gnu.version_d 0: { *(.gnu.version_d) }
284   .gnu.version_r 0: { *(.gnu.version_r) }
285   ${CREATE_SHLIB-${INTERP}}
286
287   /* Stabs debugging sections.  */
288   .stab          0 : { *(.stab) }
289   .stabstr       0 : { *(.stabstr) }
290   .stab.excl     0 : { *(.stab.excl) }
291   .stab.exclstr  0 : { *(.stab.exclstr) }
292   .stab.index    0 : { *(.stab.index) }
293   .stab.indexstr 0 : { *(.stab.indexstr) }
294
295   .comment       0 : { *(.comment) }
296
297   /* DWARF debug sections.
298      Symbols in the DWARF debugging sections are relative to the beginning
299      of the section so we begin them at 0.  */
300
301   /* DWARF 1 */
302   .debug          0 : { *(.debug) }
303   .line           0 : { *(.line) }
304
305   /* GNU DWARF 1 extensions */
306   .debug_srcinfo  0 : { *(.debug_srcinfo) }
307   .debug_sfnames  0 : { *(.debug_sfnames) }
308
309   /* DWARF 1.1 and DWARF 2 */
310   .debug_aranges  0 : { *(.debug_aranges) }
311   .debug_pubnames 0 : { *(.debug_pubnames) }
312
313   /* DWARF 2 */
314   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
315   .debug_abbrev   0 : { *(.debug_abbrev) }
316   .debug_line     0 : { *(.debug_line) }
317   .debug_frame    0 : { *(.debug_frame) }
318   .debug_str      0 : { *(.debug_str) }
319   .debug_loc      0 : { *(.debug_loc) }
320   .debug_macinfo  0 : { *(.debug_macinfo) }
321
322   /* SGI/MIPS DWARF 2 extensions */
323   .debug_weaknames 0 : { *(.debug_weaknames) }
324   .debug_funcnames 0 : { *(.debug_funcnames) }
325   .debug_typenames 0 : { *(.debug_typenames) }
326   .debug_varnames  0 : { *(.debug_varnames) }
327
328   ${STACK_ADDR+${STACK}}
329   ${OTHER_SECTIONS}
330   ${RELOCATING+${OTHER_END_SYMBOLS}}
331   ${RELOCATING+${STACKNOTE}}
332 EOF
333
334 # These relocations sections are part of the read-only segment in SVR4
335 # executables, but are not mapped in BPABI executables.
336 if [ "x$COMBRELOC" = x ]; then
337   COMBRELOCCAT=cat
338 else
339   COMBRELOCCAT="cat > $COMBRELOC"
340 fi
341 eval $COMBRELOCCAT <<EOF
342   .rel.init     0 : { *(.rel.init) }
343   .rela.init    0 : { *(.rela.init) }
344   .rel.text     0 : { *(.rel.text${RELOCATING+ .rel.text.* .rel.gnu.linkonce.t.*}) }
345   .rela.text    0 : { *(.rela.text${RELOCATING+ .rela.text.* .rela.gnu.linkonce.t.*}) }
346   .rel.fini     0 : { *(.rel.fini) }
347   .rela.fini    0 : { *(.rela.fini) }
348   .rel.rodata   0 : { *(.rel.rodata${RELOCATING+ .rel.rodata.* .rel.gnu.linkonce.r.*}) }
349   .rela.rodata  0 : { *(.rela.rodata${RELOCATING+ .rela.rodata.* .rela.gnu.linkonce.r.*}) }
350   ${OTHER_READONLY_RELOC_SECTIONS}
351   .rel.data.rel.ro 0 : { *(.rel.data.rel.ro${RELOCATING+*}) }
352   .rela.data.rel.ro 0 : { *(.rel.data.rel.ro${RELOCATING+*}) }
353   .rel.data     0 : { *(.rel.data${RELOCATING+ .rel.data.* .rel.gnu.linkonce.d.*}) }
354   .rela.data    0 : { *(.rela.data${RELOCATING+ .rela.data.* .rela.gnu.linkonce.d.*}) }
355   .rel.tdata    0 : { *(.rel.tdata${RELOCATING+ .rel.tdata.* .rel.gnu.linkonce.td.*}) }
356   .rela.tdata   0 : { *(.rela.tdata${RELOCATING+ .rela.tdata.* .rela.gnu.linkonce.td.*}) }
357   .rel.tbss     0 : { *(.rel.tbss${RELOCATING+ .rel.tbss.* .rel.gnu.linkonce.tb.*}) }
358   .rela.tbss    0 : { *(.rela.tbss${RELOCATING+ .rela.tbss.* .rela.gnu.linkonce.tb.*}) }
359   .rel.ctors    0 : { *(.rel.ctors) }
360   .rela.ctors   0 : { *(.rela.ctors) }
361   .rel.dtors    0 : { *(.rel.dtors) }
362   .rela.dtors   0 : { *(.rela.dtors) }
363   ${REL_SDATA}
364   ${REL_SBSS}
365   ${REL_SDATA2}
366   ${REL_SBSS2}
367   .rel.bss      0 : { *(.rel.bss${RELOCATING+ .rel.bss.* .rel.gnu.linkonce.b.*}) }
368   .rela.bss     0 : { *(.rela.bss${RELOCATING+ .rela.bss.* .rela.gnu.linkonce.b.*}) }
369 EOF
370 if [ -n "$COMBRELOC" ]; then
371 cat <<EOF
372   .rel.dyn      0 :
373     {
374 EOF
375 sed -e '/^[     ]*[{}][         ]*$/d;/:[       ]*$/d;/\.rela\./d;s/^.*: { *\(.*\)}$/      \1/' $COMBRELOC
376 cat <<EOF
377     }
378   .rela.dyn     0 :
379     {
380 EOF
381 sed -e '/^[     ]*[{}][         ]*$/d;/:[       ]*$/d;/\.rel\./d;s/^.*: { *\(.*\)}/      \1/' $COMBRELOC
382 cat <<EOF
383     }
384 EOF
385 fi
386 cat <<EOF
387   .rel.plt      0 : { *(.rel.plt) }
388   .rela.plt     0 : { *(.rela.plt) }
389   ${OTHER_PLT_RELOC_SECTIONS}
390 }
391 EOF