summaryrefslogtreecommitdiff
path: root/patches/eglibc/2_16/003-mips-rld-map-check.patch
diff options
context:
space:
mode:
authorJang, Bongseo <graycells@gmail.com>2012-09-23 02:18:30 (GMT)
committerJang, Bongseo <graycells@gmail.com>2012-09-23 02:18:30 (GMT)
commit3d37777119311bb649fa2a79e353a5137dd3d951 (patch)
treece2ac0afd587d80f1b76615335ceeeba51f30038 /patches/eglibc/2_16/003-mips-rld-map-check.patch
parent6eefc4b665c8ce20169892087c19785746b95b78 (diff)
libc/eglibc: Split changeset 3052:06b663f297 into eglibc/libc and eglibc/ports patches
crosstool-ng's glibc patche is made against glibc/libc sub-dir. changeset 3052:06b663f297 is against glibc top-dir. it needs to split. Signed-off-by: "Jang, Bongseo" <graycells@gmail.com> [yann.morin.1998@free.fr: fix the ports patches depth] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Message-ID: <5040c8e83e35618361dc.1348370890@localhost.localdomain> PatchWork-ID: 186177
Diffstat (limited to 'patches/eglibc/2_16/003-mips-rld-map-check.patch')
-rw-r--r--patches/eglibc/2_16/003-mips-rld-map-check.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/patches/eglibc/2_16/003-mips-rld-map-check.patch b/patches/eglibc/2_16/003-mips-rld-map-check.patch
deleted file mode 100644
index 9b646fe..0000000
--- a/patches/eglibc/2_16/003-mips-rld-map-check.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-
-On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic
-section if a --version-script sets _RLD_MAP to local. This is apparently
-a binutils bug, but libc shouldn't segfault in this case.
-
-see also: http://sourceware.org/bugilla/show_bug.cgi?id=11615
-
-Upstream-Status: Pending
-
-9/19/2010 - added by Qing He <qing.he@intel.com>
-
-
----
-diff -ru glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h glibc-2.10.1/ports/sysdeps/mips/dl-machine.h
---- glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h 2009-05-16 16:36:20.000000000 +0800
-+++ glibc-2.10.1/ports/sysdeps/mips/dl-machine.h 2010-09-19 09:11:53.000000000 +0800
-@@ -70,7 +70,8 @@
- /* If there is a DT_MIPS_RLD_MAP entry in the dynamic section, fill it in
- with the run-time address of the r_debug structure */
- #define ELF_MACHINE_DEBUG_SETUP(l,r) \
--do { if ((l)->l_info[DT_MIPS (RLD_MAP)]) \
-+do { if ((l)->l_info[DT_MIPS (RLD_MAP)] && \
-+ (l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) \
- *(ElfW(Addr) *)((l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) = \
- (ElfW(Addr)) (r); \
- } while (0)