* emultempl/armelf.em (gld_armelf_before_allocation):
[deliverable/binutils-gdb.git] / ld / scripttempl / i386go32.sc
CommitLineData
6c86b9ff
SC
1# Linker script for i386 go32 COFF.
2# stolen from ian
3test -z "$ENTRY" && ENTRY=_start
4# These are substituted in as variables in order to get '}' in a shell
5# conditional expansion.
6INIT='.init : { *(.init) }'
7FINI='.fini : { *(.fini) }'
8cat <<EOF
9OUTPUT_FORMAT("${OUTPUT_FORMAT}")
10${LIB_SEARCH_DIRS}
11
12ENTRY(${ENTRY})
13
14SECTIONS
15{
16 .text ${RELOCATING+ 0x10a8} : {
17 ${RELOCATING+ *(.init)}
18 *(.text)
19 ${RELOCATING+ *(.fini)}
20 ${RELOCATING+ etext = .};
21 }
22 .data ALIGN (0x1000) : {
23 *(.data .data2)
24 *(.ctor)
25 *(.dtor)
26 ${RELOCATING+ _edata = .};
27 }
28 .bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
29 {
30 *(.bss)
31 *(COMMON)
32 ${RELOCATING+ end = .};
33 }
34 ${RELOCATING- ${INIT}}
35 ${RELOCATING- ${FINI}}
36 .stab . (NOLOAD) :
37 {
38 [ .stab ]
39 }
40 .stabstr . (NOLOAD) :
41 {
42 [ .stabstr ]
43 }
44}
45EOF
This page took 0.143087 seconds and 4 git commands to generate.