repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libgloss
/
i960
/
mon960.ld
blob
342a03b27eb5ba54b40f7440fcbac5fc16771018
1
GROUP(-lc -lgcc -lmon960)
2
3
SECTIONS
4
{
5
. = 0xa0008000;
6
.text :
7
{
8
CREATE_OBJECT_SYMBOLS
9
*(.text)
10
_etext = .;
11
12
___CTOR_LIST__ = .;
13
LONG((___CTOR_END__ - ___CTOR_LIST__) / 4 - 2)
14
*(.ctors)
15
LONG(0)
16
___CTOR_END__ = .;
17
___DTOR_LIST__ = .;
18
LONG((___DTOR_END__ - ___DTOR_LIST__) / 4 - 2)
19
*(.dtors)
20
LONG(0)
21
___DTOR_END__ = .;
22
}
23
.data SIZEOF(.text) + ADDR(.text):
24
{
25
*(.data)
26
CONSTRUCTORS
27
_edata = .;
28
}
29
.bss SIZEOF(.data) + ADDR(.data):
30
{
31
_bss_start = .;
32
*(.bss)
33
*(COMMON)
34
_end = .;
35
}
36
}