Fix typo in f7f2534e
[deliverable/binutils-gdb.git] / ld / scripttempl / i960.sc
CommitLineData
252b5132
RH
1cat <<EOF
2SECTIONS
3{
4 .text :
5 {
6 ${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
7 *(.text)
8 ${RELOCATING+ _etext = .};
9 ${CONSTRUCTING+${COFF_CTORS}}
10 }
11 .data :
12 {
13 *(.data)
14 ${CONSTRUCTING+CONSTRUCTORS}
15 ${RELOCATING+ _edata = .};
16 }
17 .bss :
18 {
19 ${RELOCATING+ _bss_start = .};
20 *(.bss)
21 *(COMMON)
22 ${RELOCATING+ _end = .};
23 }
24}
25EOF
This page took 0.576538 seconds and 4 git commands to generate.