summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-14 06:17:09 +0000
committerChris Lattner <sabre@nondot.org>2006-09-14 06:17:09 +0000
commit43f249adb711b7f05f16c8be1549323ccff21a50 (patch)
tree97dfd93256fd50fe12557551a117e66c342db89f /tools/lli
parent26b6c0ba5da19390e9584fb8b533a941f6adb6c6 (diff)
downloadllvm-43f249adb711b7f05f16c8be1549323ccff21a50.tar.gz
llvm-43f249adb711b7f05f16c8be1549323ccff21a50.tar.bz2
llvm-43f249adb711b7f05f16c8be1549323ccff21a50.tar.xz
add a new (hidden) -disable-core-files option
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/lli.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/lli/lli.cpp b/tools/lli/lli.cpp
index be9f999a54..a9d905968f 100644
--- a/tools/lli/lli.cpp
+++ b/tools/lli/lli.cpp
@@ -23,6 +23,7 @@
#include "llvm/ExecutionEngine/GenericValue.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/PluginLoader.h"
+#include "llvm/System/Process.h"
#include "llvm/System/Signals.h"
#include <iostream>
@@ -45,6 +46,10 @@ namespace {
FakeArgv0("fake-argv0",
cl::desc("Override the 'argv[0]' value passed into the executing"
" program"), cl::value_desc("executable"));
+
+ cl::opt<bool>
+ DisableCoreFiles("disable-core-files", cl::Hidden,
+ cl::desc("Disable emission of core files if possible"));
}
//===----------------------------------------------------------------------===//
@@ -56,6 +61,10 @@ int main(int argc, char **argv, char * const *envp) {
" llvm interpreter & dynamic compiler\n");
sys::PrintStackTraceOnErrorSignal();
+ // If the user doesn't want core files, disable them.
+ if (DisableCoreFiles)
+ sys::Process::PreventCoreFiles();
+
// Load the bytecode...
std::string ErrorMsg;
ModuleProvider *MP = 0;