Search code examples
c++cunixcode-analysislegacy

Code Analysis tool for legacy C/C++


looking for a code analysis tool for some legacy c/c++ code on unix specifically to identify dependencies to

  • specific functions
  • specific (include?) files
  • File/Socket I/O calls etc.
  • function dependency tree from a root etc.

Solution

  • Doxygen is probably what you're looking for. It can provide cross-reference, call graphs and dependency trees without programmer's markups, that seems to be what you need.