xref: /openbsd-src/gnu/usr.bin/binutils-2.17/ld/scripttempl/i960.sc (revision 3d8817e467ea46cf4772788d6804dd293abfb01a)
1*3d8817e4Smiodcat <<EOF
2*3d8817e4SmiodSECTIONS
3*3d8817e4Smiod{
4*3d8817e4Smiod    .text :
5*3d8817e4Smiod    {
6*3d8817e4Smiod	${GLD_STYLE+ CREATE_OBJECT_SYMBOLS}
7*3d8817e4Smiod	*(.text)
8*3d8817e4Smiod	${RELOCATING+ _etext = .};
9*3d8817e4Smiod	${CONSTRUCTING+${COFF_CTORS}}
10*3d8817e4Smiod    }
11*3d8817e4Smiod    .data :
12*3d8817e4Smiod    {
13*3d8817e4Smiod 	*(.data)
14*3d8817e4Smiod	${CONSTRUCTING+CONSTRUCTORS}
15*3d8817e4Smiod	${RELOCATING+ _edata = .};
16*3d8817e4Smiod    }
17*3d8817e4Smiod    .bss :
18*3d8817e4Smiod    {
19*3d8817e4Smiod	${RELOCATING+ _bss_start = .};
20*3d8817e4Smiod	*(.bss)
21*3d8817e4Smiod	*(COMMON)
22*3d8817e4Smiod	${RELOCATING+ _end = .};
23*3d8817e4Smiod    }
24*3d8817e4Smiod}
25*3d8817e4SmiodEOF
26