repo.or.cz
/
binutils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/default.exp (CC): Use find_gcc.
[binutils.git]
/
ld
/
testsuite
/
ld-scripts
/
size-2.t
blob
e67b3fa8f83f137d7e3d3fcc7e78361bd188944d
1
PHDRS
2
{
3
header PT_PHDR FILEHDR PHDRS ;
4
5
image PT_LOAD FLAGS (5);
6
tls PT_TLS FLAGS (4);
7
8
}
9
SECTIONS
10
{
11
.text 0x100 : { *(.text) } :image
12
.tdata : { *(.tdata) } :image :tls
13
.tbss : { *(.tbss) } :image : tls
14
.map : {
15
LONG (SIZEOF (.text))
16
LONG (SIZEOF (.data))
17
LONG (SIZEOF (.bss))
18
LONG (SIZEOF (.tdata))
19
LONG (SIZEOF (.tbss))
20
} :image
21
}