diff -r 338a117fb65c -r e8414c8ead61 make/autoconf/hotspot.m4 --- a/make/autoconf/hotspot.m4 Sun May 20 22:03:10 2018 +0200 +++ b/make/autoconf/hotspot.m4 Sun May 20 22:18:11 2018 +0200 @@ -26,7 +26,7 @@ # All valid JVM features, regardless of platform VALID_JVM_FEATURES="compiler1 compiler2 zero minimal dtrace jvmti jvmci \ graal vm-structs jni-check services management cmsgc g1gc parallelgc serialgc epsilongc nmt cds \ - static-build link-time-opt aot" + static-build link-time-opt aot jfr" # All valid JVM variants VALID_JVM_VARIANTS="server client minimal core zero custom" @@ -206,7 +206,7 @@ if test "x$ENABLE_AOT" = "xtrue"; then # Only enable AOT on X64 platforms. - if test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then + if test "x$OPENJDK_TARGET_CPU" = "xx86_64" || test "x$OPENJDK_TARGET_CPU" = "xaarch64" ; then if test -e "${TOPDIR}/src/jdk.aot"; then if test -e "${TOPDIR}/src/jdk.internal.vm.compiler"; then ENABLE_AOT="true" @@ -309,6 +309,11 @@ AC_MSG_ERROR([Specified JVM feature 'cmsgc' requires feature 'serialgc']) fi + # Enable JFR by default, except on linux-sparcv9 and on minimal. + if test "x$OPENJDK_TARGET_OS" != xlinux || test "x$OPENJDK_TARGET_CPU" != xsparcv9; then + NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES jfr" + fi + # Turn on additional features based on other parts of configure if test "x$INCLUDE_DTRACE" = "xtrue"; then JVM_FEATURES="$JVM_FEATURES dtrace" @@ -396,7 +401,7 @@ NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES cds" fi - # Enable default features depending on variant. + # Enable features depending on variant. JVM_FEATURES_server="compiler1 compiler2 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci $JVM_FEATURES_aot $JVM_FEATURES_graal" JVM_FEATURES_client="compiler1 $NON_MINIMAL_FEATURES $JVM_FEATURES $JVM_FEATURES_jvmci" JVM_FEATURES_core="$NON_MINIMAL_FEATURES $JVM_FEATURES"