From 32184a67a685747eaabfa57c8d7db451b4438dd7 Mon Sep 17 00:00:00 2001 From: KONNO Kazuhiro Date: Mon, 31 Jul 2023 09:39:39 +0900 Subject: [PATCH] Enable JITServer build by default on AArch64 Linux This commit enables JITServer build by default on AArch64 Linux (xr64). Signed-off-by: KONNO Kazuhiro --- closed/autoconf/custom-hook.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/closed/autoconf/custom-hook.m4 b/closed/autoconf/custom-hook.m4 index 8fb67956b7..7be9a88959 100644 --- a/closed/autoconf/custom-hook.m4 +++ b/closed/autoconf/custom-hook.m4 @@ -350,7 +350,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 ;;