We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de3ae6f commit 382942dCopy full SHA for 382942d
make/hotspot/lib/JvmOverrideFiles.gmk
@@ -40,6 +40,10 @@ ifeq ($(TOOLCHAIN_TYPE), gcc)
40
# Need extra inlining to collapse all marking code into the hot marking loop
41
BUILD_LIBJVM_shenandoahConcurrentMark.cpp_CXXFLAGS := --param inline-unit-growth=1000
42
endif
43
+ ifeq ($(call check-jvm-feature, dtrace), true)
44
+ # DTRACE_PROBE macros trigger a maybe-uninitialized warning on 'ret'
45
+ BUILD_LIBJVM_jni.cpp_CXXFLAGS := -Wno-maybe-uninitialized
46
+ endif
47
48
49
LIBJVM_FDLIBM_COPY_OPT_FLAG := $(CXX_O_FLAG_NONE)
0 commit comments