* Makefile.in: Major changes. Removed some the sed
[deliverable/binutils-gdb.git] / ld / ld-gld.script
CommitLineData
a37cc0c0 1OUTPUT_ARCH(sparc)
df9d12ef 2OUTPUT_FORMAT("a.out-sunos-big")
da56abdf
SC
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)
da56abdf
SC
18 _edata = .;
19 }
20 .bss SIZEOF(.data) + ADDR(.data) :
21 {
22 *(.bss)
23 [COMMON]
24 _end = .;
25 }
26}
27
28
This page took 0.049712 seconds and 4 git commands to generate.