19990502 sourceware import
[deliverable/binutils-gdb.git] / ld / scripttempl / i960.sc
1 cat <<EOF
2 SECTIONS
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 }
25 EOF
This page took 0.032506 seconds and 4 git commands to generate.