make/autoconf/hotspot.m4
changeset 55379 865775b86780
parent 55146 aa5eeb1a9871
child 58679 9c3209ff7550
child 59026 f51714d3385d
equal deleted inserted replaced
55378:bd613b97c7c8 55379:865775b86780
   348     AC_MSG_RESULT([no, platform not supported])
   348     AC_MSG_RESULT([no, platform not supported])
   349   fi
   349   fi
   350 
   350 
   351   # Only enable ZGC on supported platforms
   351   # Only enable ZGC on supported platforms
   352   AC_MSG_CHECKING([if zgc can be built])
   352   AC_MSG_CHECKING([if zgc can be built])
   353   if test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64"; then
   353   if (test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xx86_64") || \
       
   354      (test "x$OPENJDK_TARGET_OS" = "xlinux" && test "x$OPENJDK_TARGET_CPU" = "xaarch64"); then
   354     AC_MSG_RESULT([yes])
   355     AC_MSG_RESULT([yes])
   355   else
   356   else
   356     DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES zgc"
   357     DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES zgc"
   357     AC_MSG_RESULT([no, platform not supported])
   358     AC_MSG_RESULT([no, platform not supported])
   358   fi
   359   fi