Retro68/binutils/ld/testsuite/ld-elf/pr14052.t
2017-04-10 13:32:00 +02:00

13 lines
147 B
Raku

SECTIONS {
. = SIZEOF_HEADERS;
.text : {
*(.text)
}
. = ALIGN (0x1000);
.data : {
_data_start = .;
*(.data)
}
/DISCARD/ : { *(.*) }
}