Fri Sep 25 11:08:01 1992 Steve Chamberlain (sac@thepub.cygnus.com)
[deliverable/binutils-gdb.git] / ld / ldgld.sc
CommitLineData
01bc4918
SC
1OUTPUT_ARCH(sparc)
2OUTPUT_FORMAT("a.out-sunos-big")
3SEARCH_DIR(/lib)
4SEARCH_DIR(/usr/lib)
5SEARCH_DIR(/usr/local/lib)
6__DYNAMIC = 0;
7SECTIONS
8{
9 .text 0x2020 BLOCK(0x2000):
10 {
11 CREATE_OBJECT_SYMBOLS ;
12 *(.text);
13 _etext = ALIGN( 0x2000);
14 }
15 .data ALIGN(0x2000) :
16 {
17 *(.data);
18 CONSTRUCTORS;
19 _edata = .;
20 }
21 .bss SIZEOF(.data) + ADDR(.data) :
22 {
23 *(.bss)
cbbdbb9f 24 *(COMMON)
01bc4918
SC
25 _end = .;
26 __end = .;
27 }
28}
29
30
This page took 0.045727 seconds and 4 git commands to generate.