From 7fe5bd2bec3f34d407fb75306dca481dd2fadee0 Mon Sep 17 00:00:00 2001 From: Amit Kumar Date: Fri, 31 Mar 2023 07:46:50 +0000 Subject: [PATCH] 8305174: disable dtrace for s390x builds Reviewed-by: erikj, lucy, mbaesken --- make/autoconf/jvm-features.m4 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make/autoconf/jvm-features.m4 b/make/autoconf/jvm-features.m4 index 2bf6205ce8e..28801984862 100644 --- a/make/autoconf/jvm-features.m4 +++ b/make/autoconf/jvm-features.m4 @@ -251,6 +251,9 @@ AC_DEFUN_ONCE([JVM_FEATURES_CHECK_DTRACE], if test "x$OPENJDK_TARGET_CPU_ARCH" = "xppc"; then AC_MSG_RESULT([no, $OPENJDK_TARGET_CPU_ARCH]) AVAILABLE=false + elif test "x$OPENJDK_TARGET_CPU_ARCH" = "xs390"; then + AC_MSG_RESULT([no, $OPENJDK_TARGET_CPU_ARCH]) + AVAILABLE=false elif test "x$DTRACE" != "x" && test -x "$DTRACE"; then AC_MSG_RESULT([$DTRACE]) else