if (debug) args = concat("-g", args);
if (ea) args = concat("-ea", args);
if (destinationDir != null) args = concat(new String[]{"-d", destinationDir}, args);
if (sourcePath != null) args = concat(new String[]{"-sourcepath", sourcePath}, args);
System.out.println("jooc " + toString(args));
return Jooc.run(args, new StdOutCompileLog());
}