summaryrefslogtreecommitdiff
path: root/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-07 10:50:44 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-12 14:10:34 +0100
commit854dc1c3c503e59cdd603d3319d143e18ce77840 (patch)
tree63df227c14049915dc5fb71a1cab07131d14e81a /meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
parent486b17af3e4cced76e9852e7634f75ea87433db2 (diff)
downloadopenembedded-core-854dc1c3c503e59cdd603d3319d143e18ce77840.tar.gz
openembedded-core-854dc1c3c503e59cdd603d3319d143e18ce77840.tar.bz2
openembedded-core-854dc1c3c503e59cdd603d3319d143e18ce77840.tar.xz
openembedded-core-854dc1c3c503e59cdd603d3319d143e18ce77840.zip
eglibc: Drop 2.12
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch')
-rw-r--r--meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch b/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
deleted file mode 100644
index 186c705e5..000000000
--- a/meta/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Upstream-Status: Pending
-
-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
-
-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)