|
From: <kon...@us...> - 2006-12-16 21:08:46
|
Revision: 2935
http://jnode.svn.sourceforge.net/jnode/?rev=2935&view=rev
Author: konkubinaten
Date: 2006-12-16 13:08:45 -0800 (Sat, 16 Dec 2006)
Log Message:
-----------
This improves the stability of the build process. It seems the boot image creation depends on the ordering the files are comming from the native OS.
Modified Paths:
--------------
branches/jikesRVM/build.sh
Modified: branches/jikesRVM/build.sh
===================================================================
--- branches/jikesRVM/build.sh 2006-12-16 15:26:32 UTC (rev 2934)
+++ branches/jikesRVM/build.sh 2006-12-16 21:08:45 UTC (rev 2935)
@@ -1,6 +1,8 @@
#!/bin/sh
dir=`dirname $0`
-java -Xmx1024M -Xms512M -jar $dir/core/lib/ant-launcher.jar -lib $JAVA_HOME/lib -lib $dir/core/lib -f $dir/all/build.xml $*
+for i in `find $dir/core/src/core/ |grep -v .svn | sort -r`; do touch $i ; done
+java -Xmx1450M -jar $dir/core/lib/ant-launcher.jar -lib $JAVA_HOME/lib -lib $dir/core/lib -f $dir/all/build.xml $*
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|