Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm interested in a free tool that can statically check my C++ code like Lint does. Any hints?

share|improve this question
1  
This SO question has relevant answers: What is the Best Command Line Tool to Clean Up Code? – Jonathan Leffler Mar 10 '09 at 20:23

closed as not constructive by Greg Bacon, BoltClock Apr 22 '12 at 19:20

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 94 down vote accepted

Try cppcheck, found here: http://cppcheck.wiki.sourceforge.net/

Here's a sampling of some of the checks it can perform or that I've used it for:

  • Array indices out of bounds
  • Memory/resource leaks
  • Improper new/delete
  • Failure to put virtual destructors on derived classes
  • Mismatching allocation and deallocation
  • Deallocating a deallocated pointer
  • Using variable after it is deallocated / released
  • Size mismatches
  • Invalid radix in call to strtol or strtoul
  • Overlapping data buffers
  • Unsigned division; result may be wrong
  • Unusual pointer arithmetic
  • Returning pointer to local array variable
  • Same iterator is used with two containers
  • Dangerous usage of erase
  • After pushback or pushfront, iterator may be invalid
  • Buffer overruns
  • Dangerous usage of strncat, possible buffer overrun
share|improve this answer
10  
+1 for CppCheck. Great tool! Just beware that it always returns a non-zero code if it detects any issues (even style if they're configured). If you're using an automated build system this can mark builds as failed. – MattyT Mar 10 '09 at 23:55
Does it replace lint, or is it an addition? – To1ne Aug 8 '11 at 13:51
1  
@To1ne: lint is for C code, cppcheck is for C++ code. – Drew Dormann Sep 8 '11 at 15:56
I feel that I have to add a fact that: if the code fails to compile, cppcheck won't output anything wrong. – kakyo Jan 6 at 18:45

Perhaps a list like this is what you're looking for:

http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis

It looks like you'll get the most use out of Splint or Uno .

share|improve this answer
4  
splint doesn't support c++ – tolomea Jan 22 '10 at 0:13
ah, that's a good point. I wish I'd noticed that earlier. – Jon W Jan 26 '10 at 1:40

Another tool for the list: Google cpplint.py, which Google's C++ style guide mentions. It's very Google-specific, but nonetheless.

share|improve this answer
2  
It should be noted that Google's cpplint.py mostly checks for violations of their coding style which may or may not coincide with the style you're following. – Matt Briançon Oct 21 '11 at 16:15

Personally I tried cppcheck (v1.4) and found it hopeless.

eg. This example was correctly detected for array out of bounds:

int a[4];
for (int n = 0; n < 5; n++)
{
  a[n] = n;
}

But this example was not detected:

int a[4];
int z = 4 + 1;

for (int n = 0; n < z; n++)
{
  a[n] = n;
}
share|improve this answer
1  
(error) Buffer access out-of-bounds: a – Beginner Dec 20 '11 at 20:55

You might want to check out this project:

  • Inspirel Vera++ based on user defined rules (written in scripting language, some time ago only Tcl)

And few not free ones:

share|improve this answer

splint ?

share|improve this answer
splint gets confused by "newer" syntax, where "newer" is C++ conventions that have been back-ported to C within the last 10 years. – Ryan Graham Mar 10 '09 at 20:18
Upps, so splint is c only? – Johan Mar 10 '09 at 20:46

I recently read about DeHydra and Pork used by Mozilla, although I have not tried it myself.

share|improve this answer

try nsiqcppstyle (http://nsiqcppstyle.googlecode.com)

share|improve this answer

protected by Community Jun 29 '11 at 15:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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