summaryrefslogtreecommitdiff
path: root/tools/link/link.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/link/link.cpp')
-rw-r--r--tools/link/link.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/link/link.cpp b/tools/link/link.cpp
index c4be6715cf..6cb30a2bd4 100644
--- a/tools/link/link.cpp
+++ b/tools/link/link.cpp
@@ -14,6 +14,7 @@
#include "llvm/Bytecode/Writer.h"
#include "llvm/Module.h"
#include "Support/CommandLine.h"
+#include "Support/Signals.h"
#include <fstream>
#include <memory>
#include <sys/types.h> // For FileExists
@@ -126,6 +127,10 @@ int main(int argc, char **argv) {
cerr << "Error opening '" << OutputFilename << "'!\n";
return 1;
}
+
+ // Make sure that the Out file gets unlink'd from the disk if we get a
+ // SIGINT
+ RemoveFileOnSignal(OutputFilename);
}
if (Verbose) cerr << "Writing bytecode...\n";