diff options
| author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-05-28 16:49:57 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-03 16:49:19 +0100 |
| commit | 4b616f06c1764b6c36d8d9e8fda6897682d91e4b (patch) | |
| tree | 6b964d24abb6b05a8c529d4e7982848da8d9f347 /meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch | |
| parent | 5f45b006046b3685a1141f9dd4f576fd2af6395b (diff) | |
| download | poky-4b616f06c1764b6c36d8d9e8fda6897682d91e4b.tar.gz | |
elfutils: upgrade to 0.158
Add 'm4-biarch.m4-tweak-AC_RUN_IFELSE-for-cross-compiling.patch' to fix cross compiling failure;
Rebase 'elf_additions.diff' for 0.158;
Drop obsolete patches:
- nm-Fix-size-passed-to-snprintf-for-invalid-sh_name-case.patch
- elfutils-ar-c-fix-num-passed-to-memset.patch
- fix-build-gcc-4.8.patch
Pick patches from debian:
http://ftp.de.debian.org/debian/pool/main/e/elfutils/elfutils_0.158-2.debian.tar.xz
We could not directly add elfutils_0.158-2.debian.tar.xz to SRC_URI, because it
contains other souce codes which are not pathces.
(From OE-Core rev: d9c7a02240ce37d5b2569d9177e8ba534b9295ce)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch')
| -rw-r--r-- | meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch b/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch deleted file mode 100644 index 1d5a37e8f5..0000000000 --- a/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | |||
| 2 | uclibc does not export __mempcpy like glibc so we alias it here. | ||
| 3 | This patch may make sense for upstream but elfutils uses more | ||
| 4 | glibc specific features like obstack_printf which are missing in | ||
| 5 | uclibc they need to be fixed along to make it work all the way | ||
| 6 | |||
| 7 | Upstream-Status: Inappropriate[Elfutils uses more glibc specific features] | ||
| 8 | |||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | |||
| 11 | Index: elfutils-0.155/libelf/elf_begin.c | ||
| 12 | =================================================================== | ||
| 13 | --- elfutils-0.155.orig/libelf/elf_begin.c | ||
| 14 | +++ elfutils-0.155/libelf/elf_begin.c | ||
| 15 | @@ -68,6 +68,9 @@ | ||
| 16 | #include "libelfP.h" | ||
| 17 | #include "common.h" | ||
| 18 | |||
| 19 | +#ifdef __UCLIBC__ | ||
| 20 | +#define __mempcpy mempcpy | ||
| 21 | +#endif | ||
| 22 | |||
| 23 | /* Create descriptor for archive in memory. */ | ||
| 24 | static inline Elf * | ||
