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
Co-authored-by: Bernhard Urban-Forster <burban@openjdk.org>
Reviewed-by: shade
Backport-of: 96f722c
  • Loading branch information
2 people authored and RealCLanger committed Nov 29, 2021
1 parent 5d99c71 commit d92b103
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make/autoconf/hotspot.m4
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,8 @@ AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES],
# Only enable Shenandoah on supported arches, and only if requested
AC_MSG_CHECKING([if shenandoah can be built])
if HOTSPOT_CHECK_JVM_FEATURE(shenandoahgc); then
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86" || test "x$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU" = "xlinux-aarch64" ; then
if test "x$OPENJDK_TARGET_CPU_ARCH" = "xx86" || \
test "x$OPENJDK_TARGET_CPU" = "xaarch64"; then
AC_MSG_RESULT([yes])
else
DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES shenandoahgc"
Expand Down

1 comment on commit d92b103

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

Please sign in to comment.