1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Adding .elf extension to compiled sketch list

This commit is contained in:
Federico Fissore 2015-09-24 15:29:37 +02:00
parent b01887424c
commit fc8f84f06b

View File

@ -49,7 +49,9 @@ public class CompilerUtils {
"{build.path}/{build.project_name}.with_bootloader.hex",
"{build.path}/{build.project_name}.hex",
"{build.path}/sketch/{build.project_name}.bin",
"{build.path}/{build.project_name}.bin"
"{build.path}/{build.project_name}.bin",
"{build.path}/sketch/{build.project_name}.elf",
"{build.path}/{build.project_name}.elf"
);
Optional<File> sketch = paths.stream().
map(path -> StringReplacer.replaceFromMapping(path, prefs)).