mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 14:53:32 +08:00
fdbd3e95ee
PR 19457 * testsuite/ld-scripts/script.exp (extract_symbol_test): Stop test early for PE based targets. * testsuite/ld-scripts/align.t: Use 0x1000 as VMA alignment. * testsuite/ld-pe/tlssec32.d: Allow for relocatable output.
9 lines
233 B
Perl
9 lines
233 B
Perl
SECTIONS
|
|
{
|
|
.text : {*(.text)}
|
|
.data ALIGN(0x1000) : AT (ALIGN (LOADADDR (.text) + SIZEOF (.text), 0x80))
|
|
{}
|
|
ASSERT (LOADADDR(.data) == 0x80, "dyadic ALIGN broken")
|
|
ASSERT (ADDR(.data) == 0x1000, "monadic ALIGN broken")
|
|
}
|