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
Update release readme after making 2.43.1 release
[binutils-gdb.git]
/
ld
/
testsuite
/
ld-elf
/
size-2.t
blob
f29c26cd25e97d0102ac00604809ea1d9f3dbf0a
1
PHDRS
2
{
3
header PT_PHDR PHDRS ;
4
5
image PT_LOAD FLAGS (5) PHDRS;
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 (.tdata))
17
LONG (SIZEOF (.tbss))
18
} :image
19
/DISCARD/ : { *(*) }
20
}