summaryrefslogtreecommitdiffstats
path: root/toolchain/uClibc
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-04-17 17:38:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-04-17 17:38:26 +0000
commit082ab53ed1f00657d9e82457f6e4125734196319 (patch)
treeef376b692936fd670f3dbd89cbe6fe03c5fa8ec0 /toolchain/uClibc
parent83de49ae81afcd9119a07d3043e7172563113416 (diff)
downloadmaster-31e0f0ae-082ab53ed1f00657d9e82457f6e4125734196319.tar.gz
master-31e0f0ae-082ab53ed1f00657d9e82457f6e4125734196319.tar.bz2
master-31e0f0ae-082ab53ed1f00657d9e82457f6e4125734196319.zip
uClibc: fix issues with libpthread vs libc link order on mips
SVN-Revision: 26702
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r--toolchain/uClibc/patches-0.9.32/210-mips_fix_symbol_lookup.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/toolchain/uClibc/patches-0.9.32/210-mips_fix_symbol_lookup.patch b/toolchain/uClibc/patches-0.9.32/210-mips_fix_symbol_lookup.patch
new file mode 100644
index 0000000000..f97d3cb765
--- /dev/null
+++ b/toolchain/uClibc/patches-0.9.32/210-mips_fix_symbol_lookup.patch
@@ -0,0 +1,13 @@
+--- a/ldso/ldso/mips/elfinterp.c
++++ b/ldso/ldso/mips/elfinterp.c
+@@ -378,8 +378,9 @@ void _dl_perform_mips_global_got_relocat
+ *got_entry += (unsigned long) tpnt->loadaddr;
+ }
+ else {
++ struct symbol_ref sym_ref = { sym, NULL };
+ *got_entry = (unsigned long) _dl_find_hash(strtab +
+- sym->st_name, tpnt->symbol_scope, tpnt, ELF_RTYPE_CLASS_PLT, NULL);
++ sym->st_name, tpnt->symbol_scope, tpnt, ELF_RTYPE_CLASS_PLT, &sym_ref);
+ }
+
+ got_entry++;