From 78cb6b1baa09e22d5640f20abf03fa589ecf6054 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 31 Mar 2011 20:52:54 -0700 Subject: elfutils_0.148.bb: Fix compilation issues on uclibc * Add -luargp and -lintl to linker flags * __mempcpy is not there on uclibc so define it to mempcpy (From OE-Core rev: a991226ff160c20fd7a03fe3b53b36389d3ff1f4) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- .../elfutils/elfutils-0.148/mempcpy.patch | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.148/mempcpy.patch (limited to 'meta/recipes-devtools/elfutils/elfutils-0.148') diff --git a/meta/recipes-devtools/elfutils/elfutils-0.148/mempcpy.patch b/meta/recipes-devtools/elfutils/elfutils-0.148/mempcpy.patch new file mode 100644 index 0000000000..e1e4ad0a1e --- /dev/null +++ b/meta/recipes-devtools/elfutils/elfutils-0.148/mempcpy.patch @@ -0,0 +1,23 @@ +uclibc does not export __mempcpy like glibc so we alias it here. +This patch may make sense for upstream but elfutils uses more +glibc specific features like obstack_printf which are missing in +uclibc they need to be fixed along to make it work all the way + +Upstream-status: Inappropriate[Elfutils uses more glibc specific features] + +Signed-off-by: Khem Raj + +Index: elfutils-0.148/libelf/elf_begin.c +=================================================================== +--- elfutils-0.148.orig/libelf/elf_begin.c ++++ elfutils-0.148/libelf/elf_begin.c +@@ -68,6 +68,9 @@ + #include "libelfP.h" + #include "common.h" + ++#ifdef __UCLIBC__ ++#define __mempcpy mempcpy ++#endif + + /* Create descriptor for archive in memory. */ + static inline Elf * -- cgit v1.2.3-54-g00ecf