summaryrefslogtreecommitdiffstats
path: root/clang/utils/scan-build
diff options
context:
space:
mode:
Diffstat (limited to 'clang/utils/scan-build')
-rwxr-xr-xclang/utils/scan-build12
1 files changed, 10 insertions, 2 deletions
diff --git a/clang/utils/scan-build b/clang/utils/scan-build
index aef4e67fb56..01e30997e6d 100755
--- a/clang/utils/scan-build
+++ b/clang/utils/scan-build
@@ -148,17 +148,25 @@ sub Postprocess {
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 @@ if ($Verbose >= 2) {
# Run the build.
-RunBuildCommand(\@ARGV);
+RunBuildCommand(\@ARGV, $IgnoreErrors);
# Postprocess the HTML directory.
OpenPOWER on IntegriCloud