attempt to get javac running, especially for macos9

This commit is contained in:
benfry
2003-07-25 22:27:53 +00:00
parent af3d531e4a
commit c9b0d372e8
6 changed files with 42 additions and 13 deletions

View File

@@ -694,9 +694,12 @@ afterwards, some of these steps need a cleanup function
// compile the program
//
PdeCompiler compiler =
((PdeBase.platform == PdeBase.MACOS9) ?
new PdeCompilerJavac(buildPath, className, this) :
new PdeCompiler(buildPath, className, this));
new PdeCompiler(buildPath, className, this);
// macos9 now officially broken.. see PdeCompilerJavac
//PdeCompiler compiler =
// ((PdeBase.platform == PdeBase.MACOS9) ?
// new PdeCompilerJavac(buildPath, className, this) :
// new PdeCompiler(buildPath, className, this));
// this will catch and parse errors during compilation
messageStream = new PdeMessageStream(this, compiler);