summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/patches-openjdk-8
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2018-06-14 17:44:57 +0200
committerRichard Leitner <richard.leitner@skidata.com>2018-06-15 12:06:25 +0200
commit52fb41cec7d5125bb11c718705158696ffef11f8 (patch)
treeaadcaeaab81c6a335060c8730fea0ce80b91ee1f /recipes-core/openjdk/patches-openjdk-8
parent4d5c4a654dc45e75b99f5dcfb43352e9683db583 (diff)
downloadmeta-java-52fb41cec7d5125bb11c718705158696ffef11f8.tar.gz
openjdk-8: fix build for gcc8.x
Currently oe-core/YoctoProject migrated to gcc8.x. This update broke our openjdk-8 and openjre-8 build. This patch avoids this problem by disabling the problematic gcc warnings and errors. Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8')
-rw-r--r--recipes-core/openjdk/patches-openjdk-8/hotspot_fix_gcc8x_build.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/hotspot_fix_gcc8x_build.patch b/recipes-core/openjdk/patches-openjdk-8/hotspot_fix_gcc8x_build.patch
new file mode 100644
index 0000000..1a406f2
--- /dev/null
+++ b/recipes-core/openjdk/patches-openjdk-8/hotspot_fix_gcc8x_build.patch
@@ -0,0 +1,21 @@
1From: Richard Leitner <richard.leitner@skidata.com>
2Date: Thu, 14 Jun 2018 23:42:11 +0200
3Subject: [PATCH] openjdk-8: hotspot: fix gcc8 compilation
4
5As oe-core/yocto-project master migrated to gcc8.x we need to support this.
6Therefore disable following gcc warnings/errors which caused the build to fail:
7 + stringop-overflow
8 + return-type
9---
10
11--- a/hotspot/make/linux/makefiles/gcc.make
12+++ b/hotspot/make/linux/makefiles/gcc.make
13@@ -197,7 +197,7 @@
14 endif
15
16 # Compiler warnings are treated as errors
17-WARNINGS_ARE_ERRORS = -Werror
18+WARNINGS_ARE_ERRORS = -Werror -Wno-stringop-overflow -Wno-error=return-type
19
20 ifeq ($(USE_CLANG), true)
21 # However we need to clean the code up before we can unrestrictedly enable this option with Clang