Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge the latest OpenJ9 changes to 0.33 #541

Merged
merged 2 commits into from
Jun 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion closed/autoconf/custom-hook.m4
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,15 @@ AC_DEFUN([OPENJ9_CONFIGURE_JITSERVER],
elif test "x$enable_jitserver" = xno ; then
AC_MSG_RESULT([no (explicitly disabled)])
elif test "x$enable_jitserver" = x ; then
AC_MSG_RESULT([no (default)])
case "$OPENJ9_PLATFORM_CODE" in
xa64|xl64|xz64)
AC_MSG_RESULT([yes (default)])
OPENJ9_ENABLE_JITSERVER=true
;;
*)
AC_MSG_RESULT([no (default)])
;;
esac
else
AC_MSG_ERROR([--enable-jitserver accepts no argument])
fi
Expand Down