From fb0e43ccee659c6f57daa7ba0ce7b1a3bda06b0f Mon Sep 17 00:00:00 2001 From: KONNO Kazuhiro Date: Mon, 31 Jul 2023 09:48:29 +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 ee41d77268b..dcbd3c3a7eb 100644 --- a/closed/autoconf/custom-hook.m4 +++ b/closed/autoconf/custom-hook.m4 @@ -404,7 +404,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 ;;