2017-08-05 16:32:14 +02:00

13 lines
147 B
Raku

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