This is a test to see if the file is still locked.
[deliverable/binutils-gdb.git] / ld / ld-gld68k.script
CommitLineData
df9d12ef 1OUTPUT_FORMAT("a.out-sunos-big")
d082a54f 2OUTPUT_ARCH(m68k)
93d8be3c 3
da56abdf
SC
4SEARCH_DIR(/lib)
5SEARCH_DIR(/usr/lib)
6SEARCH_DIR(/usr/local/lib)
7__DYNAMIC = 0;
8SECTIONS
9{
10 .text 0x2020 BLOCK(0x2000):
11 {
12 CREATE_OBJECT_SYMBOLS
13 *(.text)
14 _etext = ALIGN( 0x2000);
15 }
16 .data ALIGN(0x20000) :
17 {
18 *(.data)
da56abdf
SC
19 _edata = .;
20 }
21 .bss SIZEOF(.data) + ADDR(.data) :
22 {
23 *(.bss)
24 [COMMON]
25 _end = .;
26 }
27}
28
This page took 0.047163 seconds and 4 git commands to generate.