summaryrefslogtreecommitdiff
path: root/packages/glibc/2.12.1/0034-mips_shn_undef-hack.patch
blob: 2f9d6568774386dff592251e61a00adb9f1c9617 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
 elf/dl-lookup.c |    6 ++++++
 1 file changed, 6 insertions(+)

--- a/elf/dl-lookup.c
+++ b/elf/dl-lookup.c
@@ -301,6 +301,12 @@
 	      /* FALLTHROUGH */
 	    case STB_GLOBAL:
 	    success:
+#ifdef __mips__
+	      /* HACK: MIPS marks its lazy evaluation stubs with SHN_UNDEF
+		 symbols, we skip them. */
+	      if (sym->st_shndx == SHN_UNDEF)
+		break;
+#endif
 	      /* Global definition.  Just what we need.  */
 	      result->s = sym;
 	      result->m = (struct link_map *) map;