diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-08-26 11:16:10 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-08-27 15:42:35 +0000 |
commit | 8733f6093c2b77502e7228503fc22024e51599b8 (patch) | |
tree | e3fad7accf16cdbfd25326fa8d3869e4e352ccb3 /i386.ld | |
parent | 0fc6b5828ff23d81aff6f48cb168bfe82548e1d7 (diff) |
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 'i386.ld')
-rw-r--r-- | i386.ld | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -42,16 +42,16 @@ SECTIONS .rel.plt : { *(.rel.plt) - PROVIDE_HIDDEN (__rel_iplt_start = .); + PROVIDE (__rel_iplt_start = .); *(.rel.iplt) - PROVIDE_HIDDEN (__rel_iplt_end = .); + PROVIDE (__rel_iplt_end = .); } .rela.plt : { *(.rela.plt) - PROVIDE_HIDDEN (__rela_iplt_start = .); + PROVIDE (__rela_iplt_start = .); *(.rela.iplt) - PROVIDE_HIDDEN (__rela_iplt_end = .); + PROVIDE (__rela_iplt_end = .); } .init : { *(.init) } =0x47ff041f .text : |