We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 453529e commit 9e9a016Copy full SHA for 9e9a016
java/src/processing/mode/java/JavaBuild.java
@@ -1110,8 +1110,10 @@ protected boolean exportApplication(File destFolder,
1110
String runOptionsStr = runOptions.join(" ");
1111
pw.print("java " + runOptionsStr +
1112
" -Djava.library.path=\"$APPDIR:$APPDIR/lib\"" +
1113
- " -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
1114
- " -Djna.nosys=true" +
+ // these aren't included here since they're added elsewhere
+ // (and only included when Java is embedded)
1115
+ //" -Djava.ext.dirs=\"$APPDIR/java/lib/ext\"" +
1116
+ //" -Djna.nosys=true" +
1117
" -cp \"" + exportClassPath + "\"" +
1118
" " + sketch.getName() + " \"$@\"\n");
1119
0 commit comments