Skip to content

Commit

Permalink
Merge pull request #681 from knn-k/xr64jitserver
Browse files Browse the repository at this point in the history
Enable JITServer build by default on AArch64 Linux
  • Loading branch information
keithc-ca authored Aug 22, 2023
2 parents f908ec9 + 4c6a5d0 commit bb6b016
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion common/autoconf/generated-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4464,7 +4464,7 @@ VS_TOOLSET_SUPPORTED_2022=true
#CUSTOM_AUTOCONF_INCLUDE

# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=1675177578
DATE_WHEN_GENERATED=1692401469

###############################################################################
#
Expand Down
4 changes: 2 additions & 2 deletions jdk/make/closed/autoconf/custom-hook.m4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ===========================================================================
# (c) Copyright IBM Corp. 2017, 2022 All Rights Reserved
# (c) Copyright IBM Corp. 2017, 2023 All Rights Reserved
# ===========================================================================
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
Expand Down Expand Up @@ -309,7 +309,7 @@ AC_DEFUN([OPENJ9_CONFIGURE_JITSERVER],
AC_MSG_RESULT([no (explicitly disabled)])
elif test "x$enable_jitserver" = x ; then
case "$OPENJ9_PLATFORM_CODE" in
xa64|xl64|xz64)
xa64|xl64|xr64|xz64)
AC_MSG_RESULT([yes (default)])
OPENJ9_ENABLE_JITSERVER=true
;;
Expand Down
21 changes: 18 additions & 3 deletions jdk/make/closed/autoconf/generated-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4440,7 +4440,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"

################################################################################
# The order of these defines the priority by which we try to find them.
VALID_VS_VERSIONS="2010 2012 2013 2015 2017 2019"
VALID_VS_VERSIONS="2010 2012 2013 2015 2017 2019 2022"

VS_DESCRIPTION_2010="Microsoft Visual Studio 2010"
VS_VERSION_INTERNAL_2010=100
Expand Down Expand Up @@ -4513,6 +4513,21 @@ VS_SDK_PLATFORM_NAME_2019=
VS_SUPPORTED_2019=false
VS_TOOLSET_SUPPORTED_2019=false

VS_DESCRIPTION_2022="Microsoft Visual Studio 2022"
VS_VERSION_INTERNAL_2022=143
VS_MSVCR_2022=vcruntime140.dll
VS_VCRUNTIME_1_2022=vcruntime140_1.dll
VS_MSVCP_2022=msvcp140.dll
VS_ENVVAR_2022="VS170COMNTOOLS"
VS_USE_UCRT_2022="true"
VS_VS_INSTALLDIR_2022="Microsoft Visual Studio/2022"
VS_EDITIONS_2022="BuildTools Community Professional Enterprise"
VS_SDK_INSTALLDIR_2022=
VS_VS_PLATFORM_NAME_2022="v143"
VS_SDK_PLATFORM_NAME_2022=
VS_SUPPORTED_2022=true
VS_TOOLSET_SUPPORTED_2022=true

################################################################################


Expand Down Expand Up @@ -4619,7 +4634,7 @@ VS_TOOLSET_SUPPORTED_2019=false


# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=1675177578
DATE_WHEN_GENERATED=1692401469

###############################################################################
#
Expand Down Expand Up @@ -16464,7 +16479,7 @@ $as_echo "no (unsupported platform)" >&6; }
$as_echo "no (explicitly disabled)" >&6; }
elif test "x$enable_jitserver" = x ; then
case "$OPENJ9_PLATFORM_CODE" in
xa64|xl64|xz64)
xa64|xl64|xr64|xz64)
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes (default)" >&5
$as_echo "yes (default)" >&6; }
OPENJ9_ENABLE_JITSERVER=true
Expand Down

0 comments on commit bb6b016

Please sign in to comment.