[Bug 774] How to build from scrach icedtea 1.10.3/openjdk 1.6.0_b22 on Slack

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Thu Aug 25 15:17:17 PDT 2011


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


Andrew John Hughes <ahughes at redhat.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ahughes at redhat.com
             Status|NEW                         |RESOLVED
          Component|IcedTea6                    |Bootstrapping
         Resolution|                            |INVALID




--- Comment #5 from Andrew John Hughes <ahughes at redhat.com>  2011-08-25 22:17:16 ---
Updating to an unreleased gcj is certainly not necessary.  We do regular builds
with 4.5 and 4.6 and there are no issues.  Please ignore Xerxes' comment.

I don't see any obvious problems with your configure options (though export
ALT_PARALLEL_COMPILE_JOBS="${MAKEFLAGS/-j}";  export
HOTSPOT_BUILD_JOBS="${ALT_PARALLEL_COMPILE_JOBS}" should be replaced by passing
--with-parallel-jobs=${MAKEFLAGS/-j} to configure).

I do see a problem with your gcj build environment:

ln -sf /usr/bin/gcj ${_gcjjvm}/bin/javac

gcj is not a replacement for javac; it's a source to native code compiler, not
a source to bytecode compiler.  That's why this test will be failing; you can
check config.log for the details.

The following can be used instead:

echo "Creating javac script"
echo "#!/bin/bash" > ${JDK_DIR}/bin/javac
echo "${VM_BINARY} -classpath ${ECJ_JAR} \
org.eclipse.jdt.internal.compiler.batch.Main \"\$@\"" \
    >> ${JDK_DIR}/bin/javac
chmod +x ${JDK_DIR}/bin/javac

which will run ecj.


-- 
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the distro-pkg-dev mailing list