diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 09:41:33 +0200 |
---|---|---|
committer | Richard Leitner <richard.leitner@skidata.com> | 2020-08-20 15:11:36 +0200 |
commit | bbddc403d6c81d87eed9c92cc6b97aa423ee0d71 (patch) | |
tree | ccca925fe88462f1ae2ccd36b298e7f325928806 /recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch | |
parent | c378afb3b58ce7d03028998da9b71cde69cc4610 (diff) | |
download | meta-java-bbddc403d6c81d87eed9c92cc6b97aa423ee0d71.tar.gz |
openjdk-8: refresh patches
Refresh all openjdk8 patches as a preparation for the upcoming update.
Signed-off-by: Richard Leitner <richard.leitner@skidata.com>
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch')
-rw-r--r-- | recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch b/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch new file mode 100644 index 0000000..cdfe364 --- /dev/null +++ b/recipes-core/openjdk/patches-openjdk-8/1013-hotspot-enable-Wno-error.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From beeb3ed0855f1a2a6075da0ff2f93dc5654ab1d5 Mon Sep 17 00:00:00 2001 | ||
2 | From: Richard Leitner <richard.leitner@skidata.com> | ||
3 | Date: Thu, 20 Aug 2020 09:39:23 +0200 | ||
4 | Subject: [PATCH 1013/1013] hotspot: enable -Wno-error | ||
5 | |||
6 | As we don't want to deal with compiler warnings in OpenEmbedded disable | ||
7 | them for now. | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Richard Leitner <richard.leitner@skidata.com> | ||
12 | --- | ||
13 | make/linux/makefiles/gcc.make | 4 ++-- | ||
14 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/hotspot/make/linux/makefiles/gcc.make b/hotspot/make/linux/makefiles/gcc.make | ||
17 | index cd9511e50..94412c8fe 100644 | ||
18 | --- a/hotspot/make/linux/makefiles/gcc.make | ||
19 | +++ b/hotspot/make/linux/makefiles/gcc.make | ||
20 | @@ -200,8 +200,8 @@ else | ||
21 | CFLAGS += -pipe | ||
22 | endif | ||
23 | |||
24 | -# Compiler warnings are treated as errors | ||
25 | -WARNINGS_ARE_ERRORS = -Werror | ||
26 | +# Compiler warnings are not treated as errors | ||
27 | +WARNINGS_ARE_ERRORS = -Wno-error | ||
28 | |||
29 | ifeq ($(USE_CLANG), true) | ||
30 | # However we need to clean the code up before we can unrestrictedly enable this option with Clang | ||
31 | -- | ||
32 | 2.26.2 | ||
33 | |||