Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/20366
Change subject: util/crossgcc: Fix building gcc 6.3.0 with clang ......................................................................
util/crossgcc: Fix building gcc 6.3.0 with clang
It assumes that __builtin_longjmp takes a void **, which is decidedly distinctive from void *.
Change-Id: I1930bb01dd62bd6abf0688b118236db2a9299e40 Signed-off-by: Patrick Georgi pgeorgi@chromium.org --- A util/crossgcc/patches/gcc-6.3.0_ada-raise.patch 1 file changed, 11 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/20366/1
diff --git a/util/crossgcc/patches/gcc-6.3.0_ada-raise.patch b/util/crossgcc/patches/gcc-6.3.0_ada-raise.patch new file mode 100644 index 0000000..a081957 --- /dev/null +++ b/util/crossgcc/patches/gcc-6.3.0_ada-raise.patch @@ -0,0 +1,11 @@ +--- gcc-6.3.0/gcc/ada/raise.c.orig 2017-06-24 07:06:41.524685169 +0200 ++++ gcc-6.3.0/gcc/ada/raise.c 2017-06-24 07:07:12.945162120 +0200 +@@ -55,7 +55,7 @@ + void + _gnat_builtin_longjmp (void *ptr, int flag ATTRIBUTE_UNUSED) + { +- __builtin_longjmp (ptr, 1); ++ __builtin_longjmp ((void **)ptr, 1); + } + #endif +