File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Version 7.0.3
2
2
- Fixed .fpide search so file names are relative to the .fpide file
3
3
- Improved listing file tracking of COG pc (still buggy, but better)
4
4
- Made inline function expansion more robust
5
+ - Remove binary output when errors are detected in final compilation
5
6
6
7
Version 7.0.2
7
8
- Avoid a crash if a .fpide file is not found
Original file line number Diff line number Diff line change @@ -433,6 +433,8 @@ int ProcessCommandLine(CmdLineOptions *cmd)
433
433
CompileAsmToBinary (binname , asmname );
434
434
if (gl_errors == 0 ) {
435
435
DoPropellerPostprocess (binname , cmd -> useEeprom ? cmd -> eepromSize : 0 );
436
+ } else {
437
+ remove (binname );
436
438
}
437
439
if (!cmd -> quiet ) {
438
440
printf ("Done.\n" );
You can’t perform that action at this time.
0 commit comments