Make stuff compiled with gccld not dump into the debugger if there's a problem

llvm-svn: 5028
diff --git a/llvm/tools/gccld/gccld.cpp b/llvm/tools/gccld/gccld.cpp
index 5113105..5d1a35f 100644
--- a/llvm/tools/gccld/gccld.cpp
+++ b/llvm/tools/gccld/gccld.cpp
@@ -185,7 +185,7 @@
          << "' 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...