有没有办法查看 C 中的预处理器扩展文件
我想知道在编译之前我们如何查看由预处理器扩展的 C 文件,并将所有宏值放入函数内使用它们的代码中。 有办法做到吗?
I want to know how could we look at the C file after it has been expanded by the preprocessor before compilation with all the macro values put in the code inside the function where ever they are used.
Is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以要求 gcc 为您做这件事
gcc -E yourfile.cpp
这将扩展宏并包含文件,以及所有预处理。
You can ask gcc to do it for you
gcc -E yourfile.cpp
That will expand macros and include files, all the preproccessing.
只需通过
cpp
运行即可:Just run it through
cpp
: