File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -659,9 +659,9 @@ unsigned int CppCheck::checkClang(const FileWithDetails &file)
659
659
660
660
// TODO: get language from FileWithDetails object
661
661
const std::string analyzerInfo = mSettings .buildDir .empty () ? std::string () : AnalyzerInformation::getAnalyzerInfoFile (mSettings .buildDir , file.spath (), " " );
662
- const std::string clangcmd = analyzerInfo + " .clang-cmd" ;
663
- const std::string clangStderr = analyzerInfo + " .clang-stderr" ;
664
- const std::string clangAst = analyzerInfo + " .clang-ast" ;
662
+ const std::string clangcmd = analyzerInfo + " .clang-cmd" + " . " + std::to_string ( mSettings . pid ) ;
663
+ const std::string clangStderr = analyzerInfo + " .clang-stderr" + " . " + std::to_string ( mSettings . pid ) ;
664
+ const std::string clangAst = analyzerInfo + " .clang-ast" + " . " + std::to_string ( mSettings . pid ) ;
665
665
std::string exe = mSettings .clangExecutable ;
666
666
#ifdef _WIN32
667
667
// append .exe if it is not a path
You can’t perform that action at this time.
0 commit comments