Which static code analyzer (if any) do you use? I've been using PyLint for Python and I'm pretty satisfied with it, now I need something similar for C code.
How much of it's output do you have to suppress for normal daily usage?
|
2
|
Which static code analyzer (if any) do you use? I've been using PyLint for Python and I'm pretty satisfied with it, now I need something similar for C code. How much of it's output do you have to suppress for normal daily usage?
|
||||||
|
|
|
Wikipedia maintains a list of static code analysis tools for various languages (including C). Personally, I have used both
You specifically requested feedback on As stated on their home page,
I used it on a recent project and found it to be easy to use (even for embedded systems code). The complexity metric is an excellent resource for developing code that will be less error-prone and easier to maintain.
|
|||
|
|
|
There's splint, although, to be honest, I've never been able to get it to work; on my platform, it really is too overactive. In practice, my most-used "lint" are the following warning flags for
Of course, I've mostly forgotten what half of them mean. But they catch quite a few things. |
||
|
|
|
We use PC-Lint and are very happy with it. There seem to be a few camps regarding message suppression and tuning:
We tend to fall somewhere between the second and third categories. This does mean a ludicrous 100MiB+ text dump (one error per line) per lint run across the core libraries (lots of old code). A custom You can get really polished here, hyperlinking the errors back to more detailed descriptions, providing "points" for fixing existing warnings, etc... |
||
|
|
|
|
I'm a big fan of David Evans's work on LC/Lint, which has apparently had its name changed to Splint. It is very aggressive, and you can tell it a lot of useful information by adding annotations to your code. It is designed to be used with programmer annotations. It will function without them, but if you try to use it as a simple checker without providing any annotations, you will probably be disappointed. If what you want is totally automated checking, and if you can deal with a Windows-only tool, you're better off with Gimpel's PC-Lint. Jim Gimpel has had happy customers for over 25 years. |
||
|
|
|
|
I used PCLint forever and really liked it. I wish they'd get into C#... They are the ones with the pop quizzes on C or C++ code in all the magazines. |
||
|
|
|
|
There is one in the llvm clang project http://clang-analyzer.llvm.org . I have not tried it myself but i intend to do it. It looks pretty good in action: http://www.mikeash.com/?page=pyblog/friday-qa-2009-03-06-using-the-clang-static-analyzer.html Above is for Objective-C but it should be the same for C. |
||
|
|