diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-19 21:45:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-19 21:45:36 +0000 |
commit | 1f854974239a8f5b42e19c23a1a7e72b55ff81b5 (patch) | |
tree | 5c48838628ac099907cfcb0a17d6a68561c903d6 /toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch | |
parent | 69c1568779e2b960230ab246d35466b353f7f764 (diff) | |
download | mtk-20170518-1f854974239a8f5b42e19c23a1a7e72b55ff81b5.zip mtk-20170518-1f854974239a8f5b42e19c23a1a7e72b55ff81b5.tar.gz mtk-20170518-1f854974239a8f5b42e19c23a1a7e72b55ff81b5.tar.bz2 |
gcc: update, split and rework 4.9 musl patches
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42970
Diffstat (limited to 'toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch')
-rw-r--r-- | toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch b/toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch new file mode 100644 index 0000000..1ac83fe --- /dev/null +++ b/toolchain/gcc/patches/4.9-linaro/860-use_eh_frame.patch @@ -0,0 +1,42 @@ +--- a/libgcc/unwind-dw2-fde-dip.c ++++ b/libgcc/unwind-dw2-fde-dip.c +@@ -46,33 +46,13 @@ + #include "unwind-compat.h" + #include "gthr.h" + +-#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \ +- && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2) \ +- || (__GLIBC__ == 2 && __GLIBC_MINOR__ == 2 && defined(DT_CONFIG))) +-# define USE_PT_GNU_EH_FRAME +-#endif +- +-#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \ +- && defined(__BIONIC__) +-# define USE_PT_GNU_EH_FRAME +-#endif +- +-#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \ +- && defined(__FreeBSD__) && __FreeBSD__ >= 7 +-# define ElfW __ElfN +-# define USE_PT_GNU_EH_FRAME +-#endif +- +-#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \ +- && defined(__OpenBSD__) +-# define ElfW(type) Elf_##type +-# define USE_PT_GNU_EH_FRAME +-#endif +- +-#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) \ +- && defined(TARGET_DL_ITERATE_PHDR) \ +- && defined(__sun__) && defined(__svr4__) ++#if !defined(inhibit_libc) && defined(HAVE_LD_EH_FRAME_HDR) + # define USE_PT_GNU_EH_FRAME ++# ifdef __OpenBSD__ ++# define ElfW(type) Elf_##type ++# elif defined(__FreeBSD__) && __FreeBSD__ >= 7 ++# define ElfW __ElfN ++# endif + #endif + + #if defined(USE_PT_GNU_EH_FRAME) |