有没有办法查看 C 中的预处理器扩展文件

发布于 2024-08-10 07:36:06 字数 81 浏览 2 评论 0原文

我想知道在编译之前我们如何查看由预处理器扩展的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁对谁错谁最难过 2024-08-17 07:36:06

您可以要求 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.

懵少女 2024-08-17 07:36:06

只需通过cpp运行即可:

cpp file.c

Just run it through cpp:

cpp file.c
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文