forked from Imagelibrary/binutils-gdb
This reverts commit 675b9d612c.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
9 lines
125 B
Raku
9 lines
125 B
Raku
SECTIONS
|
|
{
|
|
.text : { *(.text .pr) }
|
|
.data : { *(.data) }
|
|
__data_end = .;
|
|
.bss : { *(.bss) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|