Avoid 'v' flag on archive updates, since it just wastes space in the log.
[deliverable/binutils-gdb.git] / ld / news.sc
CommitLineData
9dcb30e3
PB
1OUTPUT_FORMAT("a.out-newsos3")
2OUTPUT_ARCH(m68k)
3
4SEARCH_DIR(/lib)
5SEARCH_DIR(/usr/lib)
6SEARCH_DIR(/usr/local/lib)
7__DYNAMIC = 0;
8SECTIONS
9{
10 .text 0:
11 {
12 CREATE_OBJECT_SYMBOLS
13 *(.text)
14 _etext = .;
15 }
16 .data . :
17 {
18 *(.data)
19 CONSTRUCTORS;
20 _edata = .;
21 }
22 .bss SIZEOF(.data) + ADDR(.data) :
23 {
24 *(.bss)
25 [COMMON]
26 _end = .;
27 }
28}
29
This page took 0.022965 seconds and 4 git commands to generate.