aboutsummaryrefslogtreecommitdiff
path: root/i386.ld
diff options
context:
space:
mode:
authorLoïc Minier <lool@dooz.org>2010-01-31 12:22:52 +0100
committerAurelien Jarno <aurelien@aurel32.net>2010-02-06 22:22:27 +0100
commit845f2c2812d9ed24b36c02a3d06ee83aeafe8b49 (patch)
treeaeb8099a61d91c9e1ed8c49959360831072b760d /i386.ld
parent02ecd9fc73dc781a5ac0d8333c8071e6a28fe0e1 (diff)
Fix missing symbols in .rel/.rela.plt sections
Fix .rel.plt sections in the output to not only include .rel.plt sections from the input but also the .rel.iplt sections and to define the hidden symbols __rel_iplt_start and __rel_iplt_end around .rel.iplt as otherwise we get undefined references to these when linking statically to a multilib libc.a. This fixes the static build under i386. Apply similar logic to rela.plt/.iplt and __rela_iplt/_plt_start/_end to fix the static build under amd64. Signed-off-by: Loïc Minier <lool@dooz.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'i386.ld')
-rw-r--r--i386.ld16
1 files changed, 14 insertions, 2 deletions
diff --git a/i386.ld b/i386.ld
index f2dafecc1a..f8df7bf8dd 100644
--- a/i386.ld
+++ b/i386.ld
@@ -39,8 +39,20 @@ SECTIONS
.rela.fini : { *(.rela.fini) }
.rel.bss : { *(.rel.bss) }
.rela.bss : { *(.rela.bss) }
- .rel.plt : { *(.rel.plt) }
- .rela.plt : { *(.rela.plt) }
+ .rel.plt :
+ {
+ *(.rel.plt)
+ PROVIDE_HIDDEN (__rel_iplt_start = .);
+ *(.rel.iplt)
+ PROVIDE_HIDDEN (__rel_iplt_end = .);
+ }
+ .rela.plt :
+ {
+ *(.rela.plt)
+ PROVIDE_HIDDEN (__rela_iplt_start = .);
+ *(.rela.iplt)
+ PROVIDE_HIDDEN (__rela_iplt_end = .);
+ }
.init : { *(.init) } =0x47ff041f
.text :
{