This commit was generated by cvs2svn to track changes on a CVS vendor
[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 }
10 .data SIZEOF(.text) + ADDR(.text):
11 {
12 *(.data)
13 ${RELOCATING+ _edata = .};
14 }
15 .bss SIZEOF(.data) + ADDR(.data):
16 {
17 ${RELOCATING+ _bss_start = .};
18 *(.bss)
19 *(COMMON)
20 ${RELOCATING+ _end = .};
21 }
22 }
23 EOF
This page took 0.032884 seconds and 5 git commands to generate.