diff options
author | Alexander Graf <agraf@suse.de> | 2011-12-12 22:36:01 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-01-10 18:23:58 +0100 |
commit | 665a04ae1cbfa8004a38cf0fe99ba799c978a1fe (patch) | |
tree | b412db0221ce3e63e5dfaa604c9a8ddd0ff0b0db /ppc64.ld | |
parent | 0cdb95549fedc73e13c147ab9dcabcc303426a07 (diff) |
PPC: Fix linker scripts on ppc hosts
When compiling qemu statically with multilib on PPC, we hit the
same issue that commit 845f2c2812d9ed24b36c02a3d06ee83aeafe8b49
is fixing. Do the same here.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'ppc64.ld')
-rw-r--r-- | ppc64.ld | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -54,8 +54,20 @@ SECTIONS *(.rela.sbss2 .rela.sbss2.* .rela.gnu.linkonce.sb2.*) *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) } - .rel.plt : { *(.rel.plt) } - .rela.plt : { *(.rela.plt) } + .rel.plt : + { + *(.rel.plt) + PROVIDE (__rel_iplt_start = .); + *(.rel.iplt) + PROVIDE (__rel_iplt_end = .); + } + .rela.plt : + { + *(.rela.plt) + PROVIDE (__rela_iplt_start = .); + *(.rela.iplt) + PROVIDE (__rela_iplt_end = .); + } .rela.tocbss : { *(.rela.tocbss) } .init : { |