The build 116 broke the zero build on s390x, this is just a simple typo. Please apply. This at least lets the first build finish in the bootcycle build before the vm crashes in the second one.

However this build change broke the build on all archs which are not explicitly handled in this alternative, because hotspot/makefiles/lib/CompileJvm.gmk uses -D$(HOTSPOT_TARGET_CPU_DEFINE) in JVM_CFLAGS_TARGET_DEFINES

So at least the various ARM32 and MIPS* builds need updates.

Matthias
--- src/common/autoconf/platform.m4~	2016-04-29 14:15:25.000000000 +0200
+++ src/common/autoconf/platform.m4	2016-04-29 14:38:09.590535611 +0200
@@ -489,7 +489,7 @@
     HOTSPOT_$1_CPU_DEFINE=PPC32
   elif test "x$OPENJDK_$1_CPU" = xs390; then
     HOTSPOT_$1_CPU_DEFINE=S390
-  elif test "x$OPENJDK_$1_CPU" = ss390x; then
+  elif test "x$OPENJDK_$1_CPU" = xs390x; then
     HOTSPOT_$1_CPU_DEFINE=S390
   fi
   AC_SUBST(HOTSPOT_$1_CPU_DEFINE)

Reply via email to