summaryrefslogtreecommitdiff
path: root/packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch
diff options
context:
space:
mode:
Diffstat (limited to 'packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch')
-rw-r--r--packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch b/packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch
deleted file mode 100644
index a12c977..0000000
--- a/packages/glibc/2.14.1/0032-mips_shn_undef-hack.patch
+++ /dev/null
@@ -1,19 +0,0 @@
----
- elf/dl-lookup.c | 6 ++++++
- 1 file changed, 6 insertions(+)
-
---- a/elf/dl-lookup.c
-+++ b/elf/dl-lookup.c
-@@ -300,6 +300,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;