more notes for other changes

This commit is contained in:
Ben Fry
2016-05-08 15:17:26 -04:00
parent 8d053fd3ed
commit 8242839401
2 changed files with 20 additions and 13 deletions

View File

@@ -1124,8 +1124,9 @@ public class JavaBuild {
List<String> runOptions = new ArrayList<String>();
// set memory options, except for ARM where we're more memory-constrained compared
// to the machine the user might be building the sketch on
// Set memory options, except for ARM where we're more memory-constrained
// compared to the machine being used to build/export the sketch
// https://github.com/processing/processing/pull/4406
if (Preferences.getBoolean("run.options.memory") &&
!exportVariant.equals("armv6hf")) {
runOptions.add("-Xms" + Preferences.get("run.options.memory.initial") + "m");