list of all header files included by a C file

后端 未结 3 1182
傲寒
傲寒 2020-12-20 15:13

I am trying to \"arm\" compile a C file,it includes lot of header files recursively..i am trying to find the list of these header files..is there a easier way to find the li

3条回答
  •  感情败类
    2020-12-20 15:43

    As per http://gcc.gnu.org/onlinedocs/gcc/Preprocessor-Options.html#Preprocessor-Options -H and -M option are useful for this purpose.

    Another option is to use http://www.doxygen.nl/ and generate documentation of your project, after that you can check it to see file dependencies :), it is preferred because it supports many languages: C, C++, Objective-C, C#, PHP, Java, Python, IDL (Corba and Microsoft flavors), FORTRAN, VHDL, Tcl.

提交回复
热议问题