Strange link script support
[deliverable/binutils-gdb.git] / ld / ldgld.sc
1 OUTPUT_ARCH(sparc)
2 OUTPUT_FORMAT("a.out-sunos-big")
3 SEARCH_DIR(/lib)
4 SEARCH_DIR(/usr/lib)
5 SEARCH_DIR(/usr/local/lib)
6 __DYNAMIC = 0;
7 SECTIONS
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)
24 *(COMMON)
25 _end = .;
26 __end = .;
27 }
28 }
29
30
This page took 0.050046 seconds and 4 git commands to generate.