This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / phdrs.t
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 }
This page took 0.030772 seconds and 5 git commands to generate.