mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
b5c37946cc
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
16 lines
284 B
Raku
16 lines
284 B
Raku
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
. = ALIGN(__section_alignment__);
|
|
.text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
|
|
{
|
|
*(.text)
|
|
}
|
|
. = . + 0x1000;
|
|
.data BLOCK(__section_alignment__) :
|
|
{
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(*) }
|
|
}
|