Jikes rocks!
I made this little script to check my soruces for errors. Instead of
./build-turbine.sh clean; ./build-turbine.sh (to recompile all dependencies)
I run this - it does not write classes, and even does not rund bytecode
generator. Just syntax & semantics checking.
The best part is that it runs for about 10s, and the clean+build combination runs
about 2m. 10x speedup!!!
Maybe we should make an option in build-turbine srcipts for running this (check?)
#!/bin/sh
CLASSPATH=/usr/local/java/jre/lib/rt.jar:../lib/activation-1.0.1.jar:../lib/castor-0.8.2.jar:\
../lib/ecs-1.3.3.jar:../lib/freemarker-jdk1.2.jar:../lib/jdbc-se2.0.jar:../lib/jndi-1.2.1.jar:\
../lib/jta1.0.1.jar:../lib/mail-1.1.3.jar:../lib/stylebook-1.0-b2.jar:../lib/village-1.3.jar:\
../lib/webmacro-jdk1.2.jar:../lib/xalan_1_1_D01.jar:../lib/xerces-1.1.3.jar:../lib/xmlrpc.jar:\
/opt/tomcat/lib/servlet.jar:/opt/tomcat/lib/ant.jar
CLASSPATH=$CLASSPATH:../src/java
jikes -depend -nowrite +B `find ../src/java -name \*.java`
Rafal
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Search: <http://www.mail-archive.com/turbine%40list.working-dogs.com/>
Problems?: [EMAIL PROTECTED]