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
/
phdrs.t
blob
283e30c6799af1cab7b755842419ea5bf959f1eb
1
PHDRS
2
{
3
header PT_PHDR PHDRS ;
4
text PT_LOAD FILEHDR PHDRS ;
5
data PT_LOAD ;
6
}
7
8
SECTIONS
9
{
10
/* This test will fail on architectures where the startaddress below
11
is less than the constant MAXPAGESIZE. */
12
. = 0x800000 + SIZEOF_HEADERS;
13
.text : { *(.text) } :text
14
.data : { *(.data) } :data
15
/DISCARD/ : { *(.*) }
16
}