I want to run splints whole program analysis on my system. However the system is quite large and different parts are compiled with different compiler defines and include paths. I can see how to convey this information to splint for a single file but I can't figure out how to do it for whole program. Does anyone know a way of doing this?

link|improve this question

60% accept rate
feedback

2 Answers

Assuming you have a Makefile you could create a new target; then you would go through the actual compilation steps to duplicate them using Splint instead of the compiler.

My advice, however, is against the full-program approach. If you can isolate your system into separate parts, I'd rather start by checking them, one by one. Since your program is "quite large", expect a gazillion warnings... for each one of your modules. You will start to get rid of them once you have sprinkled your source code with the appropriate semantic annotations. Good luck! :)

link|improve this answer
I believe I was particularly looking for some output that is only produced in whole program mode. And I have many Makefiles, thousands of lines of the stuff, so extending the build process to understand split is not viable. – tolomea May 19 '11 at 1:56
If you have a complex build process (say you autogenerate some source code files, copy or move another files around, etc.) there's no way Splint can automatically do that (or even know about). So I really believe that the only way left to go is by mimicking the build process (via Makefile). – Guillermo May 19 '11 at 6:13
feedback

I once built a wrapper around gcc that analyzed its command line and after compiling, it invoked splint with all useful command line options, like -D..., -L.... That worked pretty well.

Whatever build system you are using, it finally has to call the compiler. That's where you can step in reliably and easily.

See http://wiki-static.aydogan.net/How_to_use_static_analysis_tools_within_pkgsrc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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