removed dependency for apps to set their classpath in expert mode (!)

This commit is contained in:
benfry
2003-08-04 04:44:56 +00:00
parent 32890bcd48
commit a97e28e604
3 changed files with 6 additions and 9 deletions

View File

@@ -45,6 +45,11 @@ public class PdeCompiler implements PdeMessageConsumer{
public boolean compileJava(PrintStream leechErr) {
String command[] = new String[] {
"jikes",
// used when run without a vm ("expert" mode)
"-bootclasspath",
System.getProperty("sun.boot.class.path"),
"-nowarn", // we're not currently interested in warnings
"+E", // output errors in machine-parsable format
"-d", buildPath, // output the classes in the buildPath