< prev index next >

make/hotspot/lib/JvmFeatures.gmk

Print this page

        

@@ -151,10 +151,15 @@
   JVM_CFLAGS_FEATURES += -DINCLUDE_SERIALGC=0
   JVM_EXCLUDE_PATTERNS += gc/serial
   # If serial is disabled, we cannot use serial as OldGC in parallel
   JVM_EXCLUDE_FILES += psMarkSweep.cpp psMarkSweepDecorator.cpp
 endif
+
+ifneq ($(call check-jvm-feature, epsilongc), true)
+  JVM_CFLAGS_FEATURES += -DINCLUDE_EPSILONGC=0
+  JVM_EXCLUDE_PATTERNS += gc/epsilon
+endif
 ################################################################################
 
 ifeq ($(call check-jvm-feature, link-time-opt), true)
   # NOTE: Disable automatic opimization level and let the explicit cflag control
   # optimization level instead. This activates O3 on slowdebug builds, just
< prev index next >