7c4927199c
* elf32-ppc.c (is_ppc_elf_target): Return true if the target is bfd_elf32_powerpc_vxworks_vec. ld/testsuite/ * ld-i386/vxworks1.ld (.data): New section. * ld-i386/vxworks1-lib.s: Add a pointer to a local symbol. * ld-i386/vxworks1-lib.rd: Test for the associated reloc. * ld-powerpc/vxworks1.ld (.data): New section. * ld-powerpc/vxworks1-lib.s: Add a pointer to a local symbol. * ld-powerpc/vxworks1-lib.rd: Test for the associated reloc.
30 lines
506 B
Text
30 lines
506 B
Text
SECTIONS
|
|
{
|
|
. = 0x80000;
|
|
.interp : { *(.interp) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
|
|
. = ALIGN (0x400);
|
|
.rel.dyn : { *(.rel.dyn) }
|
|
.rel.plt : { *(.rel.plt) }
|
|
|
|
. = ALIGN (0x400);
|
|
.plt : { *(.plt) }
|
|
|
|
. = ALIGN (0x400);
|
|
.text : { *(.text) }
|
|
|
|
. = ALIGN (0x1000);
|
|
.dynamic : { *(.dynamic) }
|
|
|
|
. = ALIGN (0x400);
|
|
.got : { *(.got.plt) *(.got) }
|
|
|
|
. = ALIGN (0x400);
|
|
.bss : { *(.bss) *(.dynbss) }
|
|
|
|
. = ALIGN (0x400);
|
|
.data : { *(.data) }
|
|
}
|