如何在不查看 GCC 中预处理代码的情况下知道包含哪些标头?
我有一些大型的C程序,我想知道当我编译这个程序时,实际上包含了哪些头文件......
最简单的解决方案是打印预处理的代码并看看,但你知道是否有一种方法可以编译并同时显示包含哪些头文件?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 -M 选项 输出的依赖关系。 使用 -MD生成并编译。 使用 -MF 重定向到文件。
-MM 还允许忽略依赖项列表中的系统文件。
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.
您可以使用
-MD
选项 - 有关详细信息,请参阅man gcc
。You can use
-MD
option - seeman gcc
for details.增加 gcc 的详细程度,然后通过自己制作的过滤程序运行它?
Increase gcc verbosity and then run it through an own made filter program?
使用 gcc -M 或 gcc -MM。 如果您愿意,可以使用 sed 调整输出。 如果你使用 GNU make(你应该),你可以将其包装成一个整洁的命令。
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.