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
2000-10-31 Philip Blundell <philb@gnu.org>
[binutils.git]
/
ld
/
testsuite
/
ld-scripts
/
phdrs.t
blob
243dfb10bc3c31991058b74dc585c2c84c1bc3b9
1
PHDRS
2
{
3
header PT_PHDR PHDRS ;
4
text PT_LOAD FILEHDR PHDRS ;
5
data PT_LOAD ;
6
}
7
8
SECTIONS
9
{
10
. = 0x80000 + SIZEOF_HEADERS;
11
.text : { *(.text) } :text
12
.data : { *(.data) } :data
13
/DISCARD/ : { *(.*) }
14
}