# HG changeset patch # User neugens # Date 1581344722 -3600 # Mon Feb 10 15:25:22 2020 +0100 # Node ID 37161a6813d955ab12fefe95ec4ef1b258ce9372 # Parent e86abea74e0479e7f5f1b76a37b7ea33cebb3aad 8238590: Enable JFR by default during compilation in 8u Summary: Set the configure enable-jfr flag to true by default. diff --git a/common/autoconf/generated-configure.sh b/common/autoconf/generated-configure.sh --- a/common/autoconf/generated-configure.sh +++ b/common/autoconf/generated-configure.sh @@ -1855,7 +1855,7 @@ run the Queens test after Hotspot build [disabled] --enable-unlimited-crypto Enable unlimited crypto policy [disabled] - --enable-jfr Enable Java Flight Recorder support [disabled] + --disable-jfr Disable Java Flight Recorder support [enabled] --disable-debug-symbols disable generation of debug symbols [enabled] --disable-zip-debug-info disable zipping of debug-info files [enabled] @@ -4391,7 +4391,7 @@ #CUSTOM_AUTOCONF_INCLUDE # Do not change or remove the following line, it is needed for consistency checks: -DATE_WHEN_GENERATED=1565695932 +DATE_WHEN_GENERATED=1580996389 ############################################################################### # @@ -19827,7 +19827,7 @@ if test "${enable_jfr+set}" = set; then : enableval=$enable_jfr; else - enable_jfr=no + enable_jfr=yes fi if test "x$enable_jfr" = "xno"; then diff --git a/common/autoconf/jdk-options.m4 b/common/autoconf/jdk-options.m4 --- a/common/autoconf/jdk-options.m4 +++ b/common/autoconf/jdk-options.m4 @@ -440,9 +440,9 @@ # Enable or disable JFR # AC_MSG_CHECKING([whether to build jfr]) - AC_ARG_ENABLE(jfr, [AS_HELP_STRING([--enable-jfr], - [Enable Java Flight Recorder support @<:@disabled@:>@])],, - [enable_jfr=no]) + AC_ARG_ENABLE(jfr, [AS_HELP_STRING([--disable-jfr], + [Disable Java Flight Recorder support @<:@enabled@:>@])],, + [enable_jfr=yes]) if test "x$enable_jfr" = "xno"; then ENABLE_JFR=false elif test "x$enable_jfr" = "xyes"; then