mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-11 13:02:10 +08:00
12 lines
126 B
Raku
12 lines
126 B
Raku
SECTIONS {
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
. = ALIGN (0x1000);
|
|
.data : {
|
|
_data_start = .;
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(.*) }
|
|
}
|