blob: c07ff34b71f06ca3a088b6fbb7d7bb85ebc5f8f5 [file] [log] [blame]
PHDRS
{
data PT_LOAD FILEHDR PHDRS FLAGS(4);
text PT_LOAD FILEHDR PHDRS FLAGS(1);
}
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/ : { *(.*) }
}