summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2011-08-26 11:16:10 +0200
committerBlue Swirl <blauwirbel@gmail.com>2011-08-27 15:42:35 +0000
commit8733f6093c2b77502e7228503fc22024e51599b8 (patch)
treee3fad7accf16cdbfd25326fa8d3869e4e352ccb3 /ppc64.ld
parentFix build on OpenBSD with BSD userland emu and smartcard NSS enabled (diff)
downloadqemu-kvm-8733f6093c2b77502e7228503fc22024e51599b8.tar.gz
qemu-kvm-8733f6093c2b77502e7228503fc22024e51599b8.tar.bz2
qemu-kvm-8733f6093c2b77502e7228503fc22024e51599b8.zip
Fix linker scripts
Remove PROVIDE_HIDDEN and ONLY_IF_{RO,RW} from linker scripts to make them work with older binutils versions. Fixes *-bsd-user build on OpenBSD 4.9 which ships binutils 2.15. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'ppc64.ld')
-rw-r--r--ppc64.ld6
1 files changed, 2 insertions, 4 deletions
diff --git a/ppc64.ld b/ppc64.ld
index dea0dbda2..0059ee53a 100644
--- a/ppc64.ld
+++ b/ppc64.ld
@@ -81,14 +81,12 @@ SECTIONS
.sdata2 : { *(.sdata2 .sdata2.* .gnu.linkonce.s2.*) }
.sbss2 : { *(.sbss2 .sbss2.* .gnu.linkonce.sb2.*) }
.eh_frame_hdr : { *(.eh_frame_hdr) }
- .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
- .gcc_except_table : ONLY_IF_RO { KEEP (*(.gcc_except_table))
*(.gcc_except_table.*) } /* Adjust the address for the data segment. We want to
adjust up to + the same address within the page on the next page up. */
. = ALIGN (0x10000) - ((0x10000 - .) & (0x10000 - 1)); . = DATA_SEGMENT_ALIGN
(0x10000, 0x1000); /* Exception handling */
- .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
- .gcc_except_table : ONLY_IF_RW { KEEP (*(.gcc_except_table))
+ .eh_frame : { KEEP (*(.eh_frame)) }
+ .gcc_except_table : { KEEP (*(.gcc_except_table))
*(.gcc_except_table.*) } /* Thread Local Storage sections */
.tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
.tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }