aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-05-13 21:28:02 +0000
committerTed Kremenek <kremenek@apple.com>2008-05-13 21:28:02 +0000
commit8912b5427a22d9032cad959c5c22cd9d28d4a66c (patch)
tree6fda6f8cb88360463ce32ddfc2a450f65de75733
parent3b8d116703db8018f855cbb4733ace426422623b (diff)
Use "-i" option with make when ignoring errors.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51070 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/scan-build1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/scan-build b/utils/scan-build
index 5a74c8ce8b..4098990e4c 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -497,6 +497,7 @@ sub RunBuildCommand {
elsif ($IgnoreErrors) {
if ($Cmd eq "make" or $Cmd eq "gmake") {
AddIfNotPresent($Args,"-k");
+ AddIfNotPresent($Args,"-i");
}
elsif ($Cmd eq "xcodebuild") {
AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");