]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/phdrs.t
2.41 Release sources
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.t
CommitLineData
252b5132
RH
1PHDRS
2{
3 header PT_PHDR PHDRS ;
4 text PT_LOAD FILEHDR PHDRS ;
5 data PT_LOAD ;
6}
7
8SECTIONS
9{
7f9adacd
AJ
10 /* This test will fail on architectures where the startaddress below
11 is less than the constant MAXPAGESIZE. */
12 . = 0x800000 + SIZEOF_HEADERS;
252b5132
RH
13 .text : { *(.text) } :text
14 .data : { *(.data) } :data
675b9d61 15 /DISCARD/ : { *(.*) }
252b5132 16}