]> granicus.if.org Git - clang/commitdiff
[analyzer] Handle 'mingw32-make' in the same way as 'make' and 'gmake'.
authorAnton Yartsev <anton.yartsev@gmail.com>
Wed, 15 Oct 2014 15:11:45 +0000 (15:11 +0000)
committerAnton Yartsev <anton.yartsev@gmail.com>
Wed, 15 Oct 2014 15:11:45 +0000 (15:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219794 91177308-0d34-0410-b5e6-96231b3b80d8

tools/scan-build/scan-build

index 153be2dca1c98f95ce3c371e1053c0f657a7ffbd..6f86a4d1d7b3506c49406bd26ad4d3a371d2dfbc 100755 (executable)
@@ -1056,7 +1056,7 @@ sub RunBuildCommand {
     shift @$Args;
     unshift @$Args, $CXXAnalyzer;
   }
-  elsif ($Cmd eq "make" or $Cmd eq "gmake") {
+  elsif ($Cmd eq "make" or $Cmd eq "gmake" or $Cmd eq "mingw32-make") {
     AddIfNotPresent($Args, "CC=$CCAnalyzer");
     AddIfNotPresent($Args, "CXX=$CXXAnalyzer");
     if ($IgnoreErrors) {