mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
b5c37946cc
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
17 lines
339 B
Perl
17 lines
339 B
Perl
PHDRS
|
|
{
|
|
data PT_LOAD ;
|
|
header PT_PHDR PHDRS ; /* OK */
|
|
text PT_LOAD FILEHDR PHDRS ;
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
/* This test will fail on architectures where the startaddress below
|
|
is less than the constant MAXPAGESIZE. */
|
|
. = 0x800000 + SIZEOF_HEADERS;
|
|
.text : { *(.text) } :text
|
|
.data : { *(.data) } :data
|
|
/DISCARD/ : { *(*) }
|
|
}
|