vote up 7 vote down star
7

What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend?

Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as per for voting up & down.

Similar Question: http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available

flag

33% accept rate
3  
As a question with no best answer, this should be Community Wiki. – Arno Setagaya Jul 5 at 16:26

15 Answers

vote up 9 vote down

If you run VC2008 (Express version is free) and then install the latest Windows SDK, you can get the same PREFAST static code analysis tools normally only available in VSTT. If you're already using Visual Studio this is a great way to go, if you're using GCC or some other compiler for Win32 you'll need to look elsewhere.

link|flag
Prefast comes with the Windows Driver Kit (WDK), not the SDK. – KTC Sep 20 '08 at 3:24
If Prefast works for the largest software project on the planet (and it does), it'll probably work for you too – Paul Betts May 7 at 14:39
vote up 3 vote down

PC-Lint does a fair bit of static analysis.

link|flag
Admittedly I haven't tried PC-Lint for a while, but last time I did it was really noisy. It finds good issues...and a whole lot more. – Steve Rowe May 9 at 4:18
vote up 3 vote down

We use Coverity. It isn't free by a longshot, but Windows is a supported plaform.

link|flag
vote up 2 vote down

CppCheck is open source and cross-platform.

link|flag
vote up 1 vote down

Flawfinder

link|flag
Can you add some more basic information about it in your post, as KTC requets? – jfs Sep 18 '08 at 23:16
vote up 1 vote down

Visual Studio Team System now has code analysis tools (although VSTT is pretty expensive).

link|flag
vote up 1 vote down

I have used source monitor for years. some of the things does great things. Best part is that it is free.

Check out the hompage for source monitor here: Source Monitor

link|flag
vote up 1 vote down

Klocwork "Insight" is another, but it's not free. I've also used Coverity "Prevent". Both are very good products if you don't mind the cost.

link|flag
vote up 1 vote down

I'm one of the developers for a Visual Studio C/C++ static analysis tool called Goanna. This one costs money (there's a free trial), but I'd like to think it's good.

link|flag
vote up 0 vote down

I've also heard that Oink is good.

link|flag
vote up 0 vote down

Two years ago I've used Scitools' Understand. It is portable (at least the Windows-Linux combination that we use) and has support for multiple languages. Could very well be that that is not what you're after though...

What will be interesting anyway is that it is fairly affordable, and that the support is impressive, issues and questions are more often than not addressed the same day.

link|flag
vote up 0 vote down

I use PC-Lint for code static review!

link|flag
vote up 0 vote down

i think 3 opensource static analysers impressive

Cppcheck - easy with gui interface...checks for coding standards and other critical issues... cccc - outputs the coding metrics..like no of lineof code...code coplexity index..comment count etc Cqual++ - will ave to build it form repository...gives the dataflow in code method and type level

my question is can i add custom codibng standards..is there any open tools supporting additin of custom coding standards

link|flag
vote up 0 vote down

Vera++ also enables to check custom coding standards through scripts...

link|flag
vote up 0 vote down

The DMS Software Reengineering Toolkit processes a variety of C++ dialects. It can be obtained with a duplicated code detector (exact or near miss clones), but is generally designed to be customized to carry out the analysis you want. See wwww.semanticdesigns.com/Products/DMS/DMSToolkit.html

EDIT Yes, you can code your own custom analyses or style checks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.