Replace MINUS_G by CFLAGS.
[deliverable/binutils-gdb.git] / ld / ldgld68k.script
1 OUTPUT_FORMAT("a.out-sunos-big")
2 OUTPUT_ARCH(m68k)
3
4 SEARCH_DIR(/lib)
5 SEARCH_DIR(/usr/lib)
6 SEARCH_DIR(/usr/local/lib)
7 __DYNAMIC = 0;
8 SECTIONS
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)
19 _edata = .;
20 }
21 .bss SIZEOF(.data) + ADDR(.data) :
22 {
23 *(.bss)
24 [COMMON]
25 _end = .;
26 }
27 }
28
This page took 0.034386 seconds and 4 git commands to generate.