changeset 2448:8d1426351f61

8238590: Enable JFR by default during compilation in 8u Summary: Set the configure enable-jfr flag to true by default. Reviewed-by: andrew
author neugens
date Mon, 17 Feb 2020 18:08:03 +0100
parents e86abea74e04
children 147fe4a4c0ec
files common/autoconf/generated-configure.sh common/autoconf/jdk-options.m4
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/common/autoconf/generated-configure.sh	Tue Aug 13 14:32:20 2019 +0300
+++ b/common/autoconf/generated-configure.sh	Mon Feb 17 18:08:03 2020 +0100
@@ -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
--- a/common/autoconf/jdk-options.m4	Tue Aug 13 14:32:20 2019 +0300
+++ b/common/autoconf/jdk-options.m4	Mon Feb 17 18:08:03 2020 +0100
@@ -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