I'm interested in a free tool that can statically check my C++ code like Lint does. Any hints?
|
feedback
|
closed as not constructive by Greg Bacon, BoltClock♦ Apr 22 at 19:20
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Try Here's a sampling of some of the checks it can perform or that I've used it for:
| |||||||||
feedback
|
|
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 . | |||||||
feedback
|
|
Another tool for the list: Google cpplint.py, which Google's C++ style guide mentions. It's very Google-specific, but nonetheless. | |||
feedback
|
|
This SO question has relevant answers: What is the Best Command Line Tool to Clean Up Code? | |||
|
feedback
|
|
You might want to check out this project:
And few not free ones:
| |||
|
feedback
|
|
splint ? | |||||
feedback
|
|
| |||
|
feedback
|
|
try nsiqcppstyle (http://nsiqcppstyle.googlecode.com) | |||
|
feedback
|
|
Personally I tried cppcheck (v1.4) and found it hopeless. eg. This example was correctly detected for array out of bounds:
But this example was not detected:
| |||
|
feedback
|
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.