We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59a359d commit c9c4aadCopy full SHA for c9c4aad
Changelog.txt
@@ -2,6 +2,7 @@ Version 7.0.3
2
- Fixed .fpide search so file names are relative to the .fpide file
3
- Improved listing file tracking of COG pc (still buggy, but better)
4
- Made inline function expansion more robust
5
+- Remove binary output when errors are detected in final compilation
6
7
Version 7.0.2
8
- Avoid a crash if a .fpide file is not found
cmdline.c
@@ -433,6 +433,8 @@ int ProcessCommandLine(CmdLineOptions *cmd)
433
CompileAsmToBinary(binname, asmname);
434
if (gl_errors == 0) {
435
DoPropellerPostprocess(binname, cmd->useEeprom ? cmd->eepromSize : 0);
436
+ } else {
437
+ remove(binname);
438
}
439
if (!cmd->quiet) {
440
printf("Done.\n");
0 commit comments