mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
b5c37946cc
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
13 lines
174 B
Raku
13 lines
174 B
Raku
SECTIONS
|
|
{
|
|
.text 0x0000000: { *(.text .pr) }
|
|
.data :
|
|
{
|
|
PROVIDE (__data_start = .);
|
|
*(.data)
|
|
}
|
|
__data_end = .;
|
|
.bss : { *(.bss) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|