mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
82bc9362f1
A different set of hacks to make the crossref tests pass on powerpc64 and powerpc64le. * testsuite/ld-scripts/crossref.exp: Remove -mcall-aixdesc hack. * testsuite/ld-scripts/cross2.t: Tweak .opd and .toc placement. * testsuite/ld-scripts/cross3.t: Likewise. * testsuite/ld-scripts/cross4.t: Likewise. * testsuite/ld-scripts/cross5.t: Likewise. * testsuite/ld-scripts/cross6.t: Likewise. * testsuite/ld-scripts/cross7.t: Likewise.
11 lines
234 B
Perl
11 lines
234 B
Perl
NOCROSSREFS_TO(.nocrossrefs .data)
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text) *(.text.*) }
|
|
.nocrossrefs : { *(.nocrossrefs) }
|
|
.data : { *(.data) *(.data.*) *(.sdata) *(.opd) *(.toc) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|