summaryrefslogtreecommitdiff
path: root/meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2011-07-28 11:01:31 +0100
committerSaul Wold <sgw@linux.intel.com>2011-08-01 00:04:09 -0700
commit1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8 (patch)
tree01acabf97db248ef22125c1da7864492fbd7a0f9 /meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch
parentb69a2be2f30dc633597399d42d6c87d9f0910c1a (diff)
downloadopenembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.gz
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.bz2
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.tar.xz
openembedded-core-1d9866a2c4fe93202749a56c7ad89a3cbd07d9f8.zip
glibc: deleted
Glibc 2.10.1 is outdated now and eglibc seems to provide a superset of its functionality. Signed-off-by: Phil Blundell <philb@gnu.org>
Diffstat (limited to 'meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch')
-rw-r--r--meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch b/meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch
deleted file mode 100644
index 2599e16fb..000000000
--- a/meta/recipes-core/glibc/glibc-2.10.1/mips-rld-map-check.patch
+++ /dev/null
@@ -1,23 +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: Inappropriate [not used]
-
-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)