Skip to content

Commit

Permalink
8252114: Windows-AArch64: Enable and test ZGC and ShenandoahGC
Browse files Browse the repository at this point in the history
Reviewed-by: shade, stefank, rkennke
  • Loading branch information
Monica Beckwith authored and stefank committed Sep 22, 2020
1 parent f7b1ce4 commit 96f722c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions make/autoconf/jvm-features.m4
Expand Up @@ -395,8 +395,14 @@ AC_DEFUN_ONCE([JVM_FEATURES_CHECK_ZGC],
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
AVAILABLE=false
fi
elif test "x$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU" = "xlinux-aarch64"; then
AC_MSG_RESULT([yes])
elif test "x$OPENJDK_TARGET_CPU" = "xaarch64"; then
if test "x$OPENJDK_TARGET_OS" = "xlinux" || \
test "x$OPENJDK_TARGET_OS" = "xwindows"; then
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
AVAILABLE=false
fi
else
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
AVAILABLE=false
Expand Down

1 comment on commit 96f722c

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on 96f722c Sep 22, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review

Issues

Please sign in to comment.