
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
9 lines
142 B
Raku
9 lines
142 B
Raku
SECTIONS {
|
|
.text : {
|
|
_text = .;
|
|
*(.text)
|
|
}
|
|
_end = .;
|
|
/DISCARD/ : { *(*) }
|
|
}
|
|
. = ASSERT((_end - _text <= (512 * 1024 * 1024)), "foo");
|