Skip to content

Commit

Permalink
Enable JITServer build by default on AArch64 Linux
Browse files Browse the repository at this point in the history
This commit enables JITServer build by default on AArch64 Linux (xr64).

Signed-off-by: KONNO Kazuhiro <konno@jp.ibm.com>
  • Loading branch information
knn-k committed Aug 1, 2023
1 parent 535df28 commit 497c1c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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
2 changes: 1 addition & 1 deletion jdk/make/closed/autoconf/generated-configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16464,7 +16464,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 497c1c5

Please sign in to comment.