summaryrefslogtreecommitdiffstats
path: root/toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2015-08-16 20:20:36 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2015-08-16 20:20:36 +0000
commit32c3af6a19792a805392c9dd110bbe19ac69c558 (patch)
tree41f9c2abc959d7db1e7623109ec9fdf6ca65c74e /toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch
parent4ab18306829b42596b31568bf51cf6644941f60f (diff)
downloadmaster-31e0f0ae-32c3af6a19792a805392c9dd110bbe19ac69c558.tar.gz
master-31e0f0ae-32c3af6a19792a805392c9dd110bbe19ac69c558.tar.bz2
master-31e0f0ae-32c3af6a19792a805392c9dd110bbe19ac69c558.zip
toolchain: gcc: add gcc 5.2.0
This was boot tested on mipsel32, arm32 and x86 only. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 46611
Diffstat (limited to 'toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch')
-rw-r--r--toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch b/toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch
new file mode 100644
index 0000000000..4586349537
--- /dev/null
+++ b/toolchain/gcc/patches/5.2.0/860-use_eh_frame.patch
@@ -0,0 +1,43 @@
+--- a/libgcc/unwind-dw2-fde-dip.c
++++ b/libgcc/unwind-dw2-fde-dip.c
+@@ -46,34 +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(TARGET_DL_ITERATE_PHDR) \
+- && (defined(__DragonFly__) || defined(__FreeBSD__))
+-# 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)