diff options
Diffstat (limited to 'meta/recipes-devtools/elfutils/elfutils-0.148')
-rw-r--r-- | meta/recipes-devtools/elfutils/elfutils-0.148/mempcpy.patch | 23 |
1 files changed, 23 insertions, 0 deletions
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 @@ | |||
1 | uclibc does not export __mempcpy like glibc so we alias it here. | ||
2 | This patch may make sense for upstream but elfutils uses more | ||
3 | glibc specific features like obstack_printf which are missing in | ||
4 | uclibc they need to be fixed along to make it work all the way | ||
5 | |||
6 | Upstream-status: Inappropriate[Elfutils uses more glibc specific features] | ||
7 | |||
8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
9 | |||
10 | Index: elfutils-0.148/libelf/elf_begin.c | ||
11 | =================================================================== | ||
12 | --- elfutils-0.148.orig/libelf/elf_begin.c | ||
13 | +++ elfutils-0.148/libelf/elf_begin.c | ||
14 | @@ -68,6 +68,9 @@ | ||
15 | #include "libelfP.h" | ||
16 | #include "common.h" | ||
17 | |||
18 | +#ifdef __UCLIBC__ | ||
19 | +#define __mempcpy mempcpy | ||
20 | +#endif | ||
21 | |||
22 | /* Create descriptor for archive in memory. */ | ||
23 | static inline Elf * | ||