vote up 1 vote down star

Say, I'd like to have a tool (or script?) taking project (or .h file) and building searchable tree of "includes" included into it (of included into of included into and so so on). Is there exist something like this? Should I write this by myself [of course I am :), but may be somebody had it already written or may be has an idea how to get it]?

flag

63% accept rate

2 Answers

vote up 2 vote down check

Not entirely sure this is what you're after, but you can easily get a list of includes by generating the post-CPP-processed file from the base c file, and grepping out the file/line number comments, e.g., using gcc

gcc -E main.c {usual flags} | grep '#' | cut -d' ' -f3 | sort | uniq

where main.c is your base c file.

link|flag
This is how I have done it in the past (except with MSVC). The hard part of automating is getting the correct compile flags, from either projects or makefiles) as these can effect what files are included when. – iain Aug 4 at 11:15
Thanks. In common, "I'm after" .h file (consequence of includes) in big and old project causing failures. I am interested in MSVC, but if I not receive better answer - this will do. – bgee Aug 5 at 14:34
The VS CL.exe compiler has /E & /P flags which generate the processed output to stdout and a file respectively. You can get grep, cut etc from one of several (free) Unix tools for Windows packages around, e.g. unxutils.sourceforge.net. – jon hanson Aug 5 at 14:56
vote up 1 vote down

If I remember correctly, doxygen can do this.

link|flag

Your Answer

Get an OpenID
or

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