Skip to content

Commit e14ea99

Browse files
committed
[BETA] Launch arduino-builder with experimental flag
1 parent 485e955 commit e14ea99

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

arduino-core/src/cc/arduino/Compiler.java

+2
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,8 @@ private void callArduinoBuilder(TargetBoard board, String vidpid, BuilderAction
306306
cmd.add("-verbose");
307307
}
308308

309+
cmd.add("-experimental");
310+
309311
cmd.add(pathToSketch.getAbsolutePath());
310312

311313
if (verbose) {

arduino-core/src/cc/arduino/builder/ArduinoBuilder.java

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public ArduinoBuilder() throws IOException {
3333
List<String> cmd = new ArrayList<>();
3434
cmd.add(BaseNoGui.getContentFile("arduino-builder").getAbsolutePath());
3535
cmd.add("-daemon");
36+
cmd.add("-experimental");
3637
builder = ProcessUtils.exec(cmd.toArray(new String[0]));
3738
builderOut = new MessageSiphon(builder.getInputStream(), (msg) -> {
3839
System.out.println(msg);

0 commit comments

Comments
 (0)