Skip to content

Commit fc8f84f

Browse files
author
Federico Fissore
committed
Adding .elf extension to compiled sketch list
1 parent b018874 commit fc8f84f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ public File findCompiledSketch(PreferencesMap prefs) throws PreferencesMapExcept
4949
"{build.path}/{build.project_name}.with_bootloader.hex",
5050
"{build.path}/{build.project_name}.hex",
5151
"{build.path}/sketch/{build.project_name}.bin",
52-
"{build.path}/{build.project_name}.bin"
52+
"{build.path}/{build.project_name}.bin",
53+
"{build.path}/sketch/{build.project_name}.elf",
54+
"{build.path}/{build.project_name}.elf"
5355
);
5456
Optional<File> sketch = paths.stream().
5557
map(path -> StringReplacer.replaceFromMapping(path, prefs)).

0 commit comments

Comments
 (0)