I hit problems building the tools for both xen-1.1 and xen-1.2-devel. For xen-1.1, the vmm and linux built fine, but the tools failed with something called ''ant''. ant -v says ''Apache Ant version 1.5.3 compiled on April 9 2003'' ant -buildfile build-cmdline.xml dist Buildfile: build-cmdline.xml BUILD FAILED java.lang.VerifyError: verification failed at PC 612 in org.apache.tools.ant.taskdefs.Zip:getResourcesToAdd(([Lorg.apache.tools.ant.types.FileSet;Ljava.io.File;Z)Lorg.apache.tools.ant.taskdefs.Zip$ArchiveState;): incompatible type on stack at _Jv_BytecodeVerifier.verify_fail(byte, int) (/usr/lib/libgcj.so.4.0.0) at _Jv_BytecodeVerifier.verify_instructions_0() (/usr/lib/libgcj.so.4.0.0) at _Jv_VerifyMethod(_Jv_InterpMethod) (/usr/lib/libgcj.so.4.0.0) at _Jv_PrepareClass(java.lang.Class) (/usr/lib/libgcj.so.4.0.0) at java.lang.ClassLoader.linkClass0(java.lang.Class) (/usr/lib/libgcj.so.4.0.0) at java.lang.ClassLoader.resolveClass0(java.lang.Class) (/usr/lib/libgcj.so.4.0.0) at java.lang.Class.initializeClass() (/usr/lib/libgcj.so.4.0.0) at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.4.0.0) at java.lang.Class.forName(java.lang.String) (/usr/lib/libgcj.so.4.0.0) at org.apache.tools.ant.Project.init() (Unknown Source) at org.apache.tools.ant.Main.runBuild(java.lang.ClassLoader) (Unknown Source) at org.apache.tools.ant.Main.start(java.lang.String[], java.util.Properties, java.lang.ClassLoader) (Unknown Source) at org.apache.tools.ant.Main.main(java.lang.String[]) (Unknown Source) Total time: 0 seconds For the unstable xen, a python job failed. I''m a perl person and am not familiar at all with python. python -V says ''Python 2.3.2''. /usr/bin/make -C py make[3]: Entering directory `/usr/research/playground/becker/xen/xeno-unstable.bk/tools/xc/py'' python setup.py build Traceback (most recent call last): File "setup.py", line 2, in ? from distutils.core import setup, Extension ImportError: No module named distutils.core Any suggestions? David Becker becker@cs.duke.edu ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
> > I hit problems building the tools for both xen-1.1 and xen-1.2-devel. > > For xen-1.1, the vmm and linux built fine, but the tools failed with something > called ''ant''. ant -v says ''Apache Ant version 1.5.3 compiled on April 9 2003'' > > ant -buildfile build-cmdline.xml dist > Buildfile: build-cmdline.xml > > BUILD FAILED > java.lang.VerifyError: verification failed at PC 612 in > org.apache.tools.ant.taskdefs.Zip:getResourcesToAdd(([Lorg.apache.tools.ant.types.FileSet;Ljava.io.File;Z)Lorg.apache.tools.ant.taskdefs.Zip$ArchiveState;):Hmmm.... very odd. This should work if ant is on your execution path.> For the unstable xen, a python job failed. I''m a perl person and am not > familiar at all with python. python -V says ''Python 2.3.2''. > > /usr/bin/make -C py > make[3]: Entering directory > `/usr/research/playground/becker/xen/xeno-unstable.bk/tools/xc/py'' > python setup.py build > Traceback (most recent call last): > File "setup.py", line 2, in ? > from distutils.core import setup, Extension > ImportError: No module named distutils.coreThis also should work. ''distutils'' is a standard Python package. Indeed, I have built those tools using Python 2.3.2 with no problems whatsoever --- that is, using a Python 2.3.2 that I built and installed myself to a private install directory, and then added the ''bin'' directory to my PATH.> Any suggestions?How did you install Ant and Python? Are they just standard site installs? It looks like they might have been broken by separating the binaries from certain accompanying libraries and modules. I''m almost certain this must be the case for your Python install. -- Keir ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
" How did you install Ant and Python? Are they just standard site " installs? It looks like they might have been broken by separating the " binaries from certain accompanying libraries and modules. I''m almost " certain this must be the case for your Python install. That is more or less what happened. ant failed because debian snuck in a jdk into its testing distro adding yet another java implementation. I got ant to work by trying a few other jdks. About par for java. Turns out the build host had python-2.2-dev installed, but not the python-2.3-dev package. Installing the dev package solved the python problem. ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel