diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-14 21:28:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-14 21:28:32 +0000 |
commit | debb5ee6c01485ded3ba4b95c77cb4953385a37b (patch) | |
tree | 4bbddf50ff287188ea52246a541e3acb237b4c88 /tools/gccld/gccld.cpp | |
parent | 041b31ce6956655e9a030862c01c841730562efc (diff) |
Make stuff compiled with gccld not dump into the debugger if there's a problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5028 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld/gccld.cpp')
-rw-r--r-- | tools/gccld/gccld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 51131052b4..5d1a35f8a8 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -185,7 +185,7 @@ int main(int argc, char **argv) { << "' for writing!\n"; return 1; } - Out2 << "#!/bin/sh\nlli -q $0.bc $*\n"; + Out2 << "#!/bin/sh\nlli -q -abort-on-exception $0.bc $*\n"; Out2.close(); // Make the script executable... |