Append $PLT_CFLAGS to CC for NOCROSSREFS tests
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / empty-orphan.t
CommitLineData
de7f8cc8
BW
1MEMORY
2{
3 default_mem : ORIGIN = 0x0, LENGTH = 0x100000
4 text_mem : ORIGIN = 0x60000000, LENGTH = 0x100
5 data_mem : ORIGIN = 0x70000000, LENGTH = 0x100
6}
7
8PHDRS
9{
10 default_phdr PT_LOAD;
11 text_phdr PT_LOAD;
12 data_phdr PT_LOAD;
13}
14
15SECTIONS
16{
17 .text : { *(.text) } > text_mem : text_phdr
18 .data : { *(.data) } > data_mem : data_phdr
19 .bss : { *(.bss) } > data_mem : data_phdr
74541ad4 20 /DISCARD/ : { *(.reginfo) *(.glue*) }
de7f8cc8
BW
21 /* .orphan_data is an orphan */
22}
This page took 0.42277 seconds and 4 git commands to generate.