Ham wrote:
Hi
I am looking for a function call tree program to map the function calls
of my project. I however do not want to compile my project. All the
programs I have found for this require you to compile the project which
may span over 20 files or so.
I would prefer the output probably to be in text so I can create a perl
script to analyse the results.
Any ideas?
You need special tools/IDE that parse through the entire project to
generate the function call tree. I'm trying to find an open source /
free tool to do this.
I ended up in using ctags, cscope and source navigator to help to solve
the problem to some extent. They will not generate a function call tree
but will help me to traverse through the program.
Best of luck in writing the perl script.
-kondal