repo.or.cz
/
binutils-gdb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix Windows build
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-scripts
/
assign-loc.t
blob
e5b5acd604413a91f091628cf53762bef7a7624f
1
SECTIONS
2
{
3
. = 0x2000 ;
4
5
_start = .;
6
7
HEAP_SIZE = 0x100;
8
9
.heap : {
10
. = HEAP_SIZE;
11
. = ALIGN(4);
12
}
13
14
_end = .;
15
16
.text : { *(.text) }
17
.data : { *(.data) }
18
.bss : { *(.bss) }
19
/DISCARD/ : { *(*) }
20
}