* config/mh-sparc.h: now uses libgcc.a
[deliverable/binutils-gdb.git] / ld / i386aout.sc
CommitLineData
82e643ec
SC
1OUTPUT_FORMAT("a.out-i386")
2OUTPUT_ARCH(i386)
3
4__DYNAMIC = 0;
5SECTIONS
6{
7 .text 0 BLOCK(0x1000) :
8 {
9 CREATE_OBJECT_SYMBOLS
10 *(.text)
11 _etext = ALIGN(0x1000);
12 }
13 .data ALIGN(0x1000) :
14 {
15 *(.data)
16 CONSTRUCTORS
17 _edata = .;
18 }
19 .bss SIZEOF(.data) + ADDR(.data) :
20 {
21 *(.bss)
cbbdbb9f 22 *(COMMON)
82e643ec
SC
23 _end = .;
24 }
25}
This page took 0.031315 seconds and 4 git commands to generate.