From: Chris Lattner Date: Sat, 14 Dec 2002 21:28:32 +0000 (+0000) Subject: Make stuff compiled with gccld not dump into the debugger if there's a problem X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=debb5ee6c01485ded3ba4b95c77cb4953385a37b;p=oota-llvm.git 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 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 51131052b42..5d1a35f8a88 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...