@@ -900,6 +900,7 @@ WARNINGS_AS_ERRORS_OPENJ9
900
900
WARNINGS_AS_ERRORS_OMR
901
901
OPENJ9_ENABLE_OPENJDK_METHODHANDLES
902
902
OPENJ9_ENABLE_JITSERVER
903
+ OPENJ9_ENABLE_JFR
903
904
HEALTHCENTER_JAR
904
905
OPENJ9_ENABLE_DEMOS
905
906
OPENJ9_ENABLE_DDR
@@ -1056,6 +1057,7 @@ infodir
1056
1057
docdir
1057
1058
oldincludedir
1058
1059
includedir
1060
+ runstatedir
1059
1061
localstatedir
1060
1062
sharedstatedir
1061
1063
sysconfdir
@@ -1099,6 +1101,7 @@ enable_cuda
1099
1101
enable_ddr
1100
1102
enable_demos
1101
1103
with_healthcenter
1104
+ enable_jfr
1102
1105
enable_jitserver
1103
1106
enable_openjdk_methodhandles
1104
1107
enable_warnings_as_errors_omr
@@ -1122,7 +1125,6 @@ enable_headful
1122
1125
enable_hotspot_test_in_build
1123
1126
with_cacerts_file
1124
1127
enable_unlimited_crypto
1125
- enable_jfr
1126
1128
with_milestone
1127
1129
with_update_version
1128
1130
with_user_release_suffix
@@ -1329,6 +1331,7 @@ datadir='${datarootdir}'
1329
1331
sysconfdir='${prefix}/etc'
1330
1332
sharedstatedir='${prefix}/com'
1331
1333
localstatedir='${prefix}/var'
1334
+ runstatedir='${localstatedir}/run'
1332
1335
includedir='${prefix}/include'
1333
1336
oldincludedir='/usr/include'
1334
1337
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
@@ -1581,6 +1584,15 @@ do
1581
1584
| -silent | --silent | --silen | --sile | --sil)
1582
1585
silent=yes ;;
1583
1586
1587
+ -runstatedir | --runstatedir | --runstatedi | --runstated \
1588
+ | --runstate | --runstat | --runsta | --runst | --runs \
1589
+ | --run | --ru | --r)
1590
+ ac_prev=runstatedir ;;
1591
+ -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
1592
+ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
1593
+ | --run=* | --ru=* | --r=*)
1594
+ runstatedir=$ac_optarg ;;
1595
+
1584
1596
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
1585
1597
ac_prev=sbindir ;;
1586
1598
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
1718
1730
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
1719
1731
datadir sysconfdir sharedstatedir localstatedir includedir \
1720
1732
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
1721
- libdir localedir mandir
1733
+ libdir localedir mandir runstatedir
1722
1734
do
1723
1735
eval ac_val=\$$ac_var
1724
1736
# Remove trailing slashes.
@@ -1871,6 +1883,7 @@ Fine tuning of the installation directories:
1871
1883
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
1872
1884
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
1873
1885
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
1886
+ --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
1874
1887
--libdir=DIR object code libraries [EPREFIX/lib]
1875
1888
--includedir=DIR C header files [PREFIX/include]
1876
1889
--oldincludedir=DIR C header files for non-gcc [/usr/include]
@@ -1917,6 +1930,7 @@ Optional Features:
1917
1930
--enable-cuda enable CUDA support [disabled]
1918
1931
--enable-ddr enable DDR support [disabled]
1919
1932
--enable-demos include demos in jdk image [disabled]
1933
+ --enable-jfr enable JFR support [platform dependent]
1920
1934
--enable-jitserver enable JITServer support [disabled]
1921
1935
--enable-openjdk-methodhandles
1922
1936
enable support for OpenJDK MethodHandles [disabled]
@@ -4612,6 +4626,8 @@ VS_TOOLSET_SUPPORTED_2022=true
4612
4626
4613
4627
4614
4628
4629
+
4630
+
4615
4631
4616
4632
4617
4633
@@ -4625,7 +4641,7 @@ VS_TOOLSET_SUPPORTED_2022=true
4625
4641
4626
4642
4627
4643
# Do not change or remove the following line, it is needed for consistency checks:
4628
- DATE_WHEN_GENERATED=1709065899
4644
+ DATE_WHEN_GENERATED=1711567483
4629
4645
4630
4646
###############################################################################
4631
4647
#
@@ -16644,6 +16660,39 @@ fi
16644
16660
16645
16661
16646
16662
16663
+ # Check whether --enable-jfr was given.
16664
+ if test "${enable_jfr+set}" = set; then :
16665
+ enableval=$enable_jfr;
16666
+ fi
16667
+
16668
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jfr" >&5
16669
+ $as_echo_n "checking for jfr... " >&6; }
16670
+ OPENJ9_ENABLE_JFR=false
16671
+ if test "x$enable_jfr" = xyes ; then
16672
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (explicitly enabled)" >&5
16673
+ $as_echo "yes (explicitly enabled)" >&6; }
16674
+ OPENJ9_ENABLE_JFR=true
16675
+ elif test "x$enable_jfr" = xno ; then
16676
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no (explicitly disabled)" >&5
16677
+ $as_echo "no (explicitly disabled)" >&6; }
16678
+ elif test "x$enable_jfr" = x ; then
16679
+ case "$OPENJ9_PLATFORM_CODE" in
16680
+ xa64)
16681
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (default)" >&5
16682
+ $as_echo "yes (default)" >&6; }
16683
+ OPENJ9_ENABLE_JFR=true
16684
+ ;;
16685
+ *)
16686
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no (default)" >&5
16687
+ $as_echo "no (default)" >&6; }
16688
+ ;;
16689
+ esac
16690
+ else
16691
+ as_fn_error $? "--enable-jfr accepts no argument" "$LINENO" 5
16692
+ fi
16693
+
16694
+
16695
+
16647
16696
# Check whether --enable-jitserver was given.
16648
16697
if test "${enable_jitserver+set}" = set; then :
16649
16698
enableval=$enable_jitserver;
0 commit comments