[Bug 3386] New: [IcedTea8] AArch32 jvm.cfg wrong for C1 build

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Mon May 15 00:41:00 UTC 2017


http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3386

            Bug ID: 3386
           Summary: [IcedTea8] AArch32 jvm.cfg wrong for C1 build
           Product: IcedTea
           Version: 8-hg
          Hardware: arm
                OS: All
            Status: NEW
          Severity: normal
          Priority: P5
         Component: IcedTea
          Assignee: gnu.andrew at redhat.com
          Reporter: gnu.andrew at redhat.com
                CC: unassigned at icedtea.classpath.org

Error: missing `server' JVM at
`/builddir/build/BUILD/icedtea-3.4.0/openjdk.build-boot/images/j2sdk-image/jre/lib/aarch32/server/libjvm.so'.
Please install or use the JRE or JDK that contains these missing components.

We need this change:

8164652: aarch32: C1 port
Reviewed-by: enevill
Contributed-by: Andrey Petushkov <andrey.petushkov at gmail.com>

diff --git a/make/CopyFiles.gmk b/make/CopyFiles.gmk
--- a/make/CopyFiles.gmk
+++ b/make/CopyFiles.gmk
@@ -312,7 +312,9 @@
       COPY_JVM_CFG_FILE := true
     else
       ifeq ($(OPENJDK_TARGET_CPU), aarch32)
-        COPY_JVM_CFG_FILE := true
+        ifeq ($(JVM_VARIANT_CORE), true)
+          COPY_JVM_CFG_FILE := true
+        endif
       endif
     endif
   endif

so the supplied jvm.cfg is no longer used and instead one for client is
generated.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20170515/1df500f5/attachment.html>


More information about the distro-pkg-dev mailing list