binutils-gdb/ld/testsuite/ld-elf/interleave.ld
Alan Modra 7d6de425da Objcopy interleave test
PR 22465
	* testsuite/ld-elf/interleave.s: Use .data sections and provide
	section attrs.
	* testsuite/ld-elf/interleave.ld: Discard other sections.  Adjust
	for changed section names.
2017-12-07 23:04:15 +10:30

12 lines
177 B
Plaintext

MEMORY
{
x0(xrw): ORIGIN = 0x0, LENGTH = 8
x1(xrw): ORIGIN = 0xC, LENGTH = 8
}
SECTIONS
{
.a0 : { *(.data.a0) } > x0
.a1 : { *(.data.a1) } > x1
/DISCARD/ : { *(*) }
}