repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
2009-06-26 Kai Tietz <kai.tietz@onevision.com>
[binutils.git]
/
ld
/
scripttempl
/
st2000.sc
blob
7ee132a8b263ddb27798e2bec8095f56afe984a9
1
cat <<EOF
2
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
3
OUTPUT_ARCH(${ARCH})
4
5
6
SECTIONS
7
{
8
.text :
9
{
10
*(.text)
11
*(.strings)
12
_etext = .;
13
*(.data)
14
_edata = .;
15
*(.bss)
16
*(COMMON)
17
_end = .;
18
19
}
20
21
}
22
EOF
23
24
25
26