Power PC Build

Andrew John Hughes gnu_andrew at member.fsf.org
Mon Jan 12 05:08:37 PST 2009


2009/1/12 Eric Richardson <ekrichardson at gmail.com>:
> Michael,
>
> On Sun, Jan 11, 2009 at 7:52 PM, Michael Franz <mvfranz at gmail.com> wrote:
>>
>> Eric,
>>
>> On Sun, Jan 11, 2009 at 10:31 PM, Eric Richardson <ekrichardson at gmail.com>
>> wrote:
>>>
>>> Michael,
>>>
>>> On Sun, Jan 11, 2009 at 2:17 PM, Michael Franz <mvfranz at gmail.com> wrote:
>>>>
>>>> Eric,
>>>>
>>>> How is your progress with building on PowerPC?  I have been able to get
>>>> hotspot to compile using Apple's JDK5, but I cannot get the complete JDK to
>>>> build.
>>>>
>>>> Michael
>>>
>>> I'm using this to configure.
>>>
>>> export LDFLAGS='-L/opt/local/lib';
>>> ./configure --enable-zero=yes --with-project=bsd
>>> --with-gcj-home=/Library/Java/Home
>>> --with-ecj-jar=/opt/local/share/java/eclipse-ecj.jar
>>> --with-xalan2-jar=/opt/local/share/java/xalan.jar
>>> --with-xalan2-serializer-jar=/opt/local/share/java/serializer.jar
>>> --with-xerces2-jar=/opt/local/share/java/xercesImpl.jar
>>> --with-rhino=/Users/eric/java-libs/js-engine.jar --disable-liveconnect
>>> --with-libgcj-jar=/Library/Java/Home/jre/lib/rt.jar --disable-alsa
>>>
>>> So far, I have a couple of patching problems that I ignored.
>>>
>>>
>>> Checking patches/hotspot/original/icedtea-version.patch
>>> Applying patches/hotspot/original/icedtea-version.patch
>>> patching file openjdk/hotspot/make/linux/makefiles/vm.make
>>> patching file openjdk/hotspot/src/share/vm/utilities/vmError.cpp
>>> Hunk #1 succeeded at 170 (offset 5 lines).
>>> Hunk #2 succeeded at 347 (offset 7 lines).
>>> Checking patches/icedtea-copy-plugs.patch
>>> 1 out of 3 hunks FAILED -- saving rejects to file
>>> openjdk/jdk/make/common/internal/BinaryPlugs.gmk.rej
>>> ERROR patch patches/icedtea-copy-plugs.patch FAILED!
>>> WARNING make clean-patch before retrying a fix
>>> make: *** [stamps/patch.stamp] Error 2
>>
>> I edit the breaking patches out of the Makefile.  That way, all the ones
>> that do work get applied.  If you just re-run make after this error, the
>> rest of the patches are not applied (I think) and that might be the cause of
>> your compilation errors below.
>>
>>>
>>>
>>> Checking patches/ecj/icedtea.patch
>>> 1 out of 1 hunk FAILED -- saving rejects to file
>>> openjdk-ecj/corba/make/common/Defs-linux.gmk.rej
>>> 1 out of 2 hunks FAILED -- saving rejects to file
>>> openjdk-ecj/jaxp/make/build.xml.rej
>>> 1 out of 2 hunks FAILED -- saving rejects to file
>>> openjdk-ecj/jaxws/make/build.xml.rej
>>> 1 out of 1 hunk FAILED -- saving rejects to file
>>> openjdk-ecj/jaxws/make/Makefile.rej
>>> ERROR patch patches/ecj/icedtea.patch FAILED!
>>>

The ecj patch provides most of the fixes that make it possible to
build with other JDKs so it needs to be applied.  As I've said before,
I doubt it will work with Apple's proprietary JDK.

>>> Then I get a error because the system has a space in it.
>>>
>>> jdk/make/common/shared/Defs.gmk:478: "WARNING: Value of OUTPUTDIR
>>> contains a space: './build/bsd-Power Macintosh', check or set ALT_OUTPUTDIR"
>>> jdk/make/common/shared/Defs.gmk:498: "WARNING: Value of ABS_OUTPUTDIR
>>> contains a space: '/Users/eric/java/icedtea/openjdk-ecj/build/bsd-Power
>>> Macintosh', check or set ALT_ABS_OUTPUTDIR"
>>> jdk/make/common/shared/Defs.gmk:505: *** "ERROR: Trouble with the
>>> absolute path for OUTPUTDIR 'Check_ALT_OUTPUTDIR'".  Stop.
>>> make: *** [stamps/icedtea-ecj.stamp] Error 2
>>
>> I would have thought it would be something like bsd-ppc instead of
>> bsd-Power Macintosh. I don't have any point of reference on this as I have
>> not built on other platforms. I assume it comes from uname.
>
> uname -a
> Darwin new-host.home 9.6.0 Darwin Kernel Version 9.6.0: Mon Nov 24 17:39:01
> PST 2008; root:xnu-1228.9.59~1/RELEASE_PPC Power Macintosh powerpc
> PowerMac8,2 Darwin
>

'Power Macintosh' is insane... should be ppc, sounds like some
brokenness from Apple.

> ***************
>
>>
>>
>>>
>>> So now I use this as the make command.
>>>
>>> make ALT_OUTPUTDIR=`pwd`/build/bsd-PowerMacintosh
>>> ALT_CUPS_HEADERS_PATH=/opt/local/include
>>> FREETYPE_HEADERS_PATH=/opt/local/include
>>> ALT_FREETYPE_LIB_PATH=/opt/local/lib
>>>
>>> It finds everthing in the configure but when it gets to the build it
>>> can't find cups and freetype - there may be an option in configure but
>>> haven't looked at that yet.
>>> ...
>>> checking cups/cups.h usability... yes
>>> checking cups/cups.h presence... yes
>>> checking for cups/cups.h... yes
>>> checking cups/ppd.h usability... yes
>>> checking cups/ppd.h presence... yes
>>> checking for cups/ppd.h... yes
>>> ...
>>> checking for FREETYPE2... yes
>>>
>>>
>>> Finally I get to the ant build and get this error and haven't had a
>>> chance to look at this yet either.
>>>
>>> build-bootstrap-javac:
>>>     [javac] Compiling 261 source files to
>>> /Users/eric/java/icedtea/build/bsd-PowerMacintosh/langtools/build/bootstrap/classes
>>>     [javac]
>>> /Users/eric/java/icedtea/openjdk-ecj/langtools/src/share/classes/com/sun/tools/javac/tree/JCTree.java:79:
>>> interface expected here
>>>     [javac] public abstract class JCTree implements Tree, Cloneable,
>>> DiagnosticPosition {
>>>     [javac]                                         ^
>>>     [javac]
>>> /Users/eric/java/icedtea/openjdk-ecj/langtools/src/share/classes/com/sun/tools/javac/tree/JCTree.java:1926:
>>> cannot find symbol
>>>     [javac] symbol  : class Kind
>>>     [javac] location: class com.sun.tools.javac.tree.JCTree.TypeBoundKind
>>>     [javac]         public Kind getKind() {
>>>     [javac]                ^
>>>
>>>
>>> Something isn't built obviously. Everybody on the lists has patient and
>>> helpful so I'm sure I'll continue to make progress on the build. I am
>>> interested in the Makefile changes submitted for the bsd port to see if they
>>> will help. Don't know how to try them yet either. New to Mercurial.
>>
>> Are you using icedtea 6 or 7?  I have been using 7 with the bsd option
>> since it has all of the bsd changes in it.
>
> Definitely, Icedtea 7. Andrew has made it very clear that Icedtea 7 is
> really the only option.
>

Only because the BSD porters are working in a separate OpenJDK7 tree,
making its use incredibly niche (i.e. it can't provide a TCK-passing
Free Java for *BSD until such a time as there is a Free TCK for 7,
that's some years off).  I think the work would be better placed
directly in IcedTea where it can be used with 6 + 7.

>>
>>
>>>
>>> I'm glad you are working on the Intel version as the platform should be
>>> virtually identical except for the processor type. compiler flags etc. I
>>> need to use the zero assembly but I guess you wouldn't.
>>>
>>> Thanks for asking,
>>
>> No problem.  Getting IcedTea on Power Macs would be very good.
>>>

Agreed.  I'll look at supporting BSD better in 7 once I've finished
work on NIO2 support.

>>> Eric
>>
>> Michael
>
> Eric
>
>
>
>
>

Cheers,
-- 
Andrew :-)

Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net

PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint: F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8



More information about the distro-pkg-dev mailing list