Skip to content

Commit 95e2b2e

Browse files
author
duke
committedSep 24, 2020
Automatic merge of master into pattern-runtime
2 parents 3f0f547 + 8b85c3a commit 95e2b2e

File tree

570 files changed

+7200
-5115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

570 files changed

+7200
-5115
lines changed
 

‎make/autoconf/flags-cflags.m4

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ AC_DEFUN([FLAGS_SETUP_WARNINGS],
134134
135135
WARNINGS_ENABLE_ALL="-W3"
136136
DISABLED_WARNINGS="4800"
137+
if test "x$TOOLCHAIN_VERSION" = x2017; then
138+
# VS2017 incorrectly triggers this warning for constexpr
139+
DISABLED_WARNINGS+=" 4307"
140+
fi
137141
;;
138142
139143
gcc)

‎make/autoconf/jvm-features.m4

+8-2
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,14 @@ AC_DEFUN_ONCE([JVM_FEATURES_CHECK_ZGC],
395395
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
396396
AVAILABLE=false
397397
fi
398-
elif test "x$OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU" = "xlinux-aarch64"; then
399-
AC_MSG_RESULT([yes])
398+
elif test "x$OPENJDK_TARGET_CPU" = "xaarch64"; then
399+
if test "x$OPENJDK_TARGET_OS" = "xlinux" || \
400+
test "x$OPENJDK_TARGET_OS" = "xwindows"; then
401+
AC_MSG_RESULT([yes])
402+
else
403+
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
404+
AVAILABLE=false
405+
fi
400406
else
401407
AC_MSG_RESULT([no, $OPENJDK_TARGET_OS-$OPENJDK_TARGET_CPU])
402408
AVAILABLE=false

0 commit comments

Comments
 (0)