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?
|
feedback
|
|
Assuming you have a 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! :) | |||||
feedback
|
|
I once built a wrapper around 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 | |||
|
feedback
|