summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/openjdk-8-common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/openjdk/openjdk-8-common.inc')
-rw-r--r--recipes-core/openjdk/openjdk-8-common.inc22
1 files changed, 8 insertions, 14 deletions
diff --git a/recipes-core/openjdk/openjdk-8-common.inc b/recipes-core/openjdk/openjdk-8-common.inc
index 5228338..c78bb2a 100644
--- a/recipes-core/openjdk/openjdk-8-common.inc
+++ b/recipes-core/openjdk/openjdk-8-common.inc
@@ -170,20 +170,14 @@ EXTRA_OECONF_append = "\
170" 170"
171 171
172# Since v6, GCC sets the default C++ standard to C++14 and introduces 172# Since v6, GCC sets the default C++ standard to C++14 and introduces
173# dead store elimination by default. OpenJDK 8 is not ready for either 173# dead store elimination by default.
174# of these changes. 174# Since v10, GCC defaults to -fno-common.
175FLAGS_GCC6 = "-fno-lifetime-dse -fno-delete-null-pointer-checks" 175# OpenJDK 8 is not ready for either of these changes.
176FLAGS_GCC7 = "-fno-lifetime-dse -fno-delete-null-pointer-checks" 176GLOBAL_FLAGS = "-fno-lifetime-dse -fno-delete-null-pointer-checks -fcommon"
177FLAGS_GCC8 = "-fno-lifetime-dse -fno-delete-null-pointer-checks"
178FLAGS_GCC9 = "-fno-lifetime-dse -fno-delete-null-pointer-checks"
179FLAGS_GCC10 = "-fno-lifetime-dse -fno-delete-null-pointer-checks"
180
181# GCC 10 defaults to -fno-common, but OpenJDK 8 is not ready for this.
182FLAGS_GCC10_append = " -fcommon"
183 177
184# flags for -native, and for bits that need a host-tool during -cross 178# flags for -native, and for bits that need a host-tool during -cross
185BUILD_CFLAGS_append = " ${@openjdk_build_helper_get_build_cflags(d)}" 179BUILD_CFLAGS_append = " ${GLOBAL_FLAGS}"
186BUILD_CXXFLAGS_append = " ${@openjdk_build_helper_get_build_cflags(d)}" 180BUILD_CXXFLAGS_append = " ${GLOBAL_FLAGS}"
187# flags for -cross 181# flags for -cross
188TARGET_CFLAGS_append = " ${@openjdk_build_helper_get_target_cflags(d)}" 182TARGET_CFLAGS_append = " ${GLOBAL_FLAGS}"
189TARGET_CXXFLAGS_append = " ${@openjdk_build_helper_get_target_cflags(d)}" 183TARGET_CXXFLAGS_append = " ${GLOBAL_FLAGS}"