Skip to content

Commit cfd39b1

Browse files
committed
Enable JITServer by default on supported platforms
Signed-off-by: Dhruv Chopra <[email protected]>
1 parent 004fa36 commit cfd39b1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

closed/autoconf/custom-hook.m4

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,15 @@ AC_DEFUN([OPENJ9_CONFIGURE_JITSERVER],
395395
elif test "x$enable_jitserver" = xno ; then
396396
AC_MSG_RESULT([no (explicitly disabled)])
397397
elif test "x$enable_jitserver" = x ; then
398-
AC_MSG_RESULT([no (default)])
398+
case "$OPENJ9_PLATFORM_CODE" in
399+
xa64|xl64|xz64)
400+
AC_MSG_RESULT([yes (default)])
401+
OPENJ9_ENABLE_JITSERVER=true
402+
;;
403+
*)
404+
AC_MSG_RESULT([no (default)])
405+
;;
406+
esac
399407
else
400408
AC_MSG_ERROR([--enable-jitserver accepts no argument])
401409
fi

0 commit comments

Comments
 (0)