From: Anton Yartsev Date: Wed, 15 Oct 2014 15:11:45 +0000 (+0000) Subject: [analyzer] Handle 'mingw32-make' in the same way as 'make' and 'gmake'. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=471d393d71923d58a86a7de41f4583ef487021b6;p=clang [analyzer] Handle 'mingw32-make' in the same way as 'make' and 'gmake'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219794 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/scan-build/scan-build b/tools/scan-build/scan-build index 153be2dca1..6f86a4d1d7 100755 --- a/tools/scan-build/scan-build +++ b/tools/scan-build/scan-build @@ -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) {