file config.texi was initially added on branch binutils-2_17-branch.
[binutils.git] / ld / testsuite / ld-scripts / empty-orphan.t
blobefed7617df0faf11f56ed610462a4eaf325cf3e6
1 MEMORY
3   default_mem : ORIGIN = 0x0, LENGTH = 0x100000
4   text_mem : ORIGIN = 0x60000000, LENGTH = 0x100
5   data_mem : ORIGIN = 0x70000000, LENGTH = 0x100
8 PHDRS
10   default_phdr PT_LOAD;
11   text_phdr PT_LOAD;
12   data_phdr PT_LOAD;
15 SECTIONS
17    .text : { *(.text) } > text_mem : text_phdr
18    .data : { *(.data) } > data_mem : data_phdr
19    .bss : { *(.bss) } > data_mem : data_phdr
20    /* .orphan_data is an orphan */