We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 004fa36 commit cfd39b1Copy full SHA for cfd39b1
closed/autoconf/custom-hook.m4
@@ -395,7 +395,15 @@ AC_DEFUN([OPENJ9_CONFIGURE_JITSERVER],
395
elif test "x$enable_jitserver" = xno ; then
396
AC_MSG_RESULT([no (explicitly disabled)])
397
elif test "x$enable_jitserver" = x ; then
398
- AC_MSG_RESULT([no (default)])
+ 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
407
else
408
AC_MSG_ERROR([--enable-jitserver accepts no argument])
409
fi
0 commit comments