mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
13 lines
146 B
Raku
13 lines
146 B
Raku
SECTIONS {
|
|
. = SIZEOF_HEADERS;
|
|
.text : {
|
|
*(.text)
|
|
}
|
|
. = ALIGN (0x1000);
|
|
.data : {
|
|
_data_start = .;
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(*) }
|
|
}
|