Implemented "-k" support.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49090 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/scan-build b/utils/scan-build
index aef4e67..01e3099 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -148,17 +148,25 @@
sub RunBuildCommand {
my $Args = shift;
+ my $IgnoreErrors = shift;
my $Cmd = $Args->[0];
if ($Cmd eq "gcc" or $Cmd eq "cc" or $Cmd eq "llvm-gcc") {
shift @$Args;
unshift @$Args, "ccc-analyzer"
}
+ elsif ($IgnoreErrors) {
+ if ($Cmd eq "make" or $Cmd eq "gmake") {
+ push @$Args, "-k";
+ }
+ elsif ($Cmd eq "xcodebuild") {
+ push @$Args, "-PBXBuildsContinueAfterErrors=YES";
+ }
+ }
system(@$Args);
}
-
##----------------------------------------------------------------------------##
# DisplayHelp - Utility function to display all help options.
##----------------------------------------------------------------------------##
@@ -288,7 +296,7 @@
# Run the build.
-RunBuildCommand(\@ARGV);
+RunBuildCommand(\@ARGV, $IgnoreErrors);
# Postprocess the HTML directory.