mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-11 13:02:10 +08:00
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
13 lines
342 B
Raku
13 lines
342 B
Raku
OUTPUT_ARCH(i386)
|
|
PHDRS {
|
|
text PT_LOAD FLAGS(5); /* R_E */
|
|
}
|
|
SECTIONS
|
|
{
|
|
. = 0xC0000000 + ((0x100000 + (0x100000 - 1)) & ~(0x100000 - 1));
|
|
.bar : AT(ADDR(.bar) - 0xC0000000) { *(.bar) } :text
|
|
.bss : AT(ADDR(.bss) - 0xC0000000) { *(.bss) }
|
|
.foo 0 : AT(ADDR(.bss) + SIZEOF(.bss) - 0xC0000000) { *(.foo) } :text
|
|
/DISCARD/ : { *(*) }
|
|
}
|