From 5c9cd9564f4917f4ac84f56e65b0e31adffdc975 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 5 Sep 2003 19:23:03 +0000 Subject: [PATCH] -abort-on-exception is gone. Rebuild your gccld shell scripts, folks! :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8368 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccld/gccld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index a797488a436..b6d20023f91 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -437,7 +437,7 @@ int main(int argc, char **argv) { if (!Out2.good()) return PrintAndReturn(argv[0], "error opening '" + OutputFilename + "' for writing!"); - Out2 << "#!/bin/sh\nlli -q -abort-on-exception $0.bc $*\n"; + Out2 << "#!/bin/sh\nlli -q $0.bc $*\n"; Out2.close(); // Make the script executable... -- 2.34.1