I'm looking for a native C++ static analysis tool that I can use both from within Visual Studio and as part of a TFS 2010 build. It must also work for 64-bit compilation. Does anyone know any tools that support this?
|
Try PVS-Studio. PVS-Studio is a static analyzer that detects errors in source code of C/C++/C++11 applications. The PVS-Studio tool integrates into the Visual Studio 2005/2008/2010 environment. Integrating with Team Foundation 2010 Build Server: http://www.viva64.com/en/d/0006/#ID0EFAAI Fully functional trial: http://www.viva64.com/en/pvs-studio/ |
|||
|
|
|
I am using CppCheck. This is a commandline tool which we use in our continous integration server, but I'm sure it can be called from a pre/post build event. It outputs to console or file (text/xml). |
|||||||||
|
|
See our SD C++ CloneDR tool, which detects cloned code in spite of changes to layout, variable names and often even replaced statements. This tool can be launched from a command line. |
|||
|
|
|
I'm not sure about 64-bit compilation. But, I think can use FxCop for static code analysis of C++ projects by integrating FxCop into VS2010 project, run fxcopcmd.exe in the post-build event to automatically perform code analysis when building projects (or) you can use Invoke Process Activity in Build process Template. |
|||
|
|
According to this blog, Visual Studio 11 will support 64-bit code analysis out-of-the-box in all editions: http://blogs.msdn.com/b/codeanalysis/archive/2012/03/09/what-s-new-in-code-analysis-for-visual-studio-11.aspx |
|||
|
|