We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289b836 commit e6d5255Copy full SHA for e6d5255
app/src/processing/app/debug/Compiler.java
@@ -654,8 +654,8 @@ void compileLink(List<String> includePaths)
654
objectFileList = objectFileList.substring(1);
655
656
PreferencesMap dict = new PreferencesMap(prefs);
657
- dict.put("compiler.c.elf.flags", dict
658
- .get("compiler.c.elf.flags" + optRelax));
+ String flags = dict.get("compiler.c.elf.flags") + optRelax;
+ dict.put("compiler.c.elf.flags", flags);
659
dict.put("archive_file", "core.a");
660
dict.put("object_files", objectFileList);
661
dict.put("ide_version", "" + Base.REVISION);
0 commit comments