diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-13 15:43:51 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-12-13 17:25:40 +0100 |
commit | 6d7f991afbe53f041f03123092cfe410b3f200a8 (patch) | |
tree | 1faf394874271b4457b0b121797a4f7a8733b3c2 /toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch | |
parent | a94d74d9c875b4a1c07945bf9af282221d0178b3 (diff) |
update to gcc 5.3.0, use as default compiler
Tested with embedded-test.sh for all supported architectures.
Only sh2 will require a new uClibc-ng (git) to compile successfully
a toolchain.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Diffstat (limited to 'toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch')
-rw-r--r-- | toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch b/toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch new file mode 100644 index 000000000..cdbbd6000 --- /dev/null +++ b/toolchain/gcc/patches/5.3.0/ia64-fix-libgcc.patch @@ -0,0 +1,30 @@ +diff -Nur gcc-4.9.3.orig/libgcc/config/ia64/fde-glibc.c gcc-4.9.3/libgcc/config/ia64/fde-glibc.c +--- gcc-4.9.3.orig/libgcc/config/ia64/fde-glibc.c 2014-01-02 23:25:22.000000000 +0100 ++++ gcc-4.9.3/libgcc/config/ia64/fde-glibc.c 2015-12-01 07:06:43.963906167 +0100 +@@ -25,6 +25,8 @@ + /* Locate the FDE entry for a given address, using glibc ld.so routines + to avoid register/deregister calls at DSO load/unload. */ + ++#ifndef inhibit_libc ++ + #ifndef _GNU_SOURCE + #define _GNU_SOURCE 1 + #endif +@@ -159,3 +161,4 @@ + + return data.ret; + } ++#endif +diff -Nur gcc-4.9.3.orig/libgcc/unwind-generic.h gcc-4.9.3/libgcc/unwind-generic.h +--- gcc-4.9.3.orig/libgcc/unwind-generic.h 2014-01-02 23:25:22.000000000 +0100 ++++ gcc-4.9.3/libgcc/unwind-generic.h 2015-12-01 07:00:15.731287428 +0100 +@@ -221,7 +221,9 @@ + compatible with the standard ABI for IA-64, we inline these. */ + + #ifdef __ia64__ ++#ifndef inhibit_libc + #include <stdlib.h> ++#endif + + static inline _Unwind_Ptr + _Unwind_GetDataRelBase (struct _Unwind_Context *_C) |