vote up 4 vote down star
1

Hi,

I've got some big C programs, and I would like to know when I'm compiling this program, which header files are actually included...

The simplest solution would be to print the preprocessed code and look but do you know if there's a way to compile and at the same time showing what header files are included ?

flag

61% accept rate

4 Answers

vote up 8 vote down check

Use the -M option to output the dependencies. Use -MD to generate and compile. Use -MF to redirected to a file.

Also -MM allow ignoring the system file in the dependencies list.

gcc ... -M  -MF <output_file>     # generate dependencies
gcc ... -MD -MF <output_file>     # compile and generate dependencies
link|flag
but from the manual : Passing -M to the driver implies -E, and suppresses warnings with an implicit -w. So the program is not actually compiled – LB Jun 26 at 13:58
Yes, you have to use -MD to compile and generate the dependencies at the same time. – philippe Jun 26 at 14:19
alright... thanks... ;) – LB Jun 26 at 14:35
vote up 0 vote down

Increase gcc verbosity and then run it through an own made filter program?

link|flag
no gcc -v does not print this information – LB Jun 26 at 13:48
vote up 4 vote down

You can use -MD option - see man gcc for details.

link|flag
vote up 0 vote down

Use gcc -M or gcc -MM. Adjust the output with sed if you like. If you use GNU make (and you should) you can wrap this up a into single tidy command.

link|flag

Your Answer

Get an OpenID
or

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