summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-10-06 16:12:16 +0200
committerKoen Kooi <koen@dominion.thruhere.net>2011-10-06 17:46:45 +0200
commit6aea5cdadffc2dfc0beba228003ee979e02e9e9e (patch)
tree3eb85036e8bff0fc77cc8ff160d64122f45c0df1 /meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
parentea53d5c61b3c9100c51089ce613e1387cd711357 (diff)
downloadmeta-openembedded-6aea5cdadffc2dfc0beba228003ee979e02e9e9e.tar.gz
eglibc 2.12: import from oe-core
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch')
-rw-r--r--meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch b/meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
new file mode 100644
index 0000000000..186c705e56
--- /dev/null
+++ b/meta-oe/recipes-core/eglibc/eglibc-2.12/mips-rld-map-check.patch
@@ -0,0 +1,23 @@
1Upstream-Status: Pending
2
3On mips target, binutils currently sets DT_MIPS_RLD_MAP to 0 in dynamic
4section if a --version-script sets _RLD_MAP to local. This is apparently
5a binutils bug, but libc shouldn't segfault in this case.
6
7see also: http://sourceware.org/bugilla/show_bug.cgi?id=11615
8
99/19/2010 - added by Qing He <qing.he@intel.com>
10---
11diff -ru glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h glibc-2.10.1/ports/sysdeps/mips/dl-machine.h
12--- glibc-2.10.1.orig/ports/sysdeps/mips/dl-machine.h 2009-05-16 16:36:20.000000000 +0800
13+++ glibc-2.10.1/ports/sysdeps/mips/dl-machine.h 2010-09-19 09:11:53.000000000 +0800
14@@ -70,7 +70,8 @@
15 /* If there is a DT_MIPS_RLD_MAP entry in the dynamic section, fill it in
16 with the run-time address of the r_debug structure */
17 #define ELF_MACHINE_DEBUG_SETUP(l,r) \
18-do { if ((l)->l_info[DT_MIPS (RLD_MAP)]) \
19+do { if ((l)->l_info[DT_MIPS (RLD_MAP)] && \
20+ (l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) \
21 *(ElfW(Addr) *)((l)->l_info[DT_MIPS (RLD_MAP)]->d_un.d_ptr) = \
22 (ElfW(Addr)) (r); \
23 } while (0)