< prev index next >

make/autoconf/hotspot.m4

Print this page
rev 51053 : 8207830: [aix] disable jfr in build and tests

*** 329,342 **** --- 329,344 ---- AC_MSG_ERROR([Specified JVM feature 'cmsgc' requires feature 'serialgc']) fi # Enable JFR by default, except for Zero, linux-sparcv9 and on minimal. if ! HOTSPOT_CHECK_JVM_VARIANT(zero); then + if test "x$OPENJDK_TARGET_OS" != xaix; then if test "x$OPENJDK_TARGET_OS" != xlinux || test "x$OPENJDK_TARGET_CPU" != xsparcv9; then NON_MINIMAL_FEATURES="$NON_MINIMAL_FEATURES jfr" fi fi + fi # Only enable ZGC on Linux x86_64 AC_MSG_CHECKING([if zgc should be built]) if HOTSPOT_CHECK_JVM_FEATURE(zgc); then if test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then
*** 457,467 **** AC_MSG_RESULT([yes]) fi JVM_FEATURES_aot="aot" fi else ! if test "x$enable_aot" = "xno" || "x$DISABLE_AOT" = "xaot"; then AC_MSG_RESULT([no, forced]) else AC_MSG_RESULT([no]) fi JVM_FEATURES_aot="" --- 459,469 ---- AC_MSG_RESULT([yes]) fi JVM_FEATURES_aot="aot" fi else ! if test "x$enable_aot" = "xno" || test "x$DISABLE_AOT" = "xaot"; then AC_MSG_RESULT([no, forced]) else AC_MSG_RESULT([no]) fi JVM_FEATURES_aot=""
< prev index next >