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
/
ldgldUr.script
1
2
SEARCH_DIR(/lib)
3
SEARCH_DIR(/usr/lib)
4
SEARCH_DIR(/usr/local/lib)
5
SECTIONS
6
{
7
.text 0:
8
{
9
CREATE_OBJECT_SYMBOLS
10
*(.text)
11
}
12
.data SIZEOF(.text) + ADDR(.text) :
13
{
14
*(.data)
15
CONSTRUCTORS
16
___end_list__ = . ;
17
}
18
.bss SIZEOF(.data) + ADDR(.data) :
19
{
20
*(.bss)
21
[COMMON]
22
}
23
}
24