mirror of
https://github.com/processing/processing4.git
synced 2026-02-08 08:09:32 +01:00
attempt to get javac running, especially for macos9
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user