projects
/
platform
/
upstream
/
binutils.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
-y support
[platform/upstream/binutils.git]
/
ld
/
i386aout.sc
1
OUTPUT_FORMAT("a.out-i386")
2
OUTPUT_ARCH(i386)
3
4
__DYNAMIC = 0;
5
SECTIONS
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)
22
*(COMMON)
23
_end = .;
24
}
25
}