循环遍历 C 预处理器中的标头

发布于 2024-12-17 20:43:56 字数 93 浏览 0 评论 0原文

有没有办法循环遍历所有包含/定义的头文件,然后#undef它们全部?

如果循环是问题所在,是否有另一种方法可以轻松地解决所有问题?

Is there a way to loop through all the included/defined header files and then #undef them all?

If looping is the issue, is there another way to #undef all of them with ease?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

岛歌少女 2024-12-24 20:43:57

GNU cpp 提供了一个 -dM 指令来做到这一点,您可以列出所有定义:

gcc -E -dM -c foo.c

然后您可以使用 sed 脚本在命令行上取消定义它们:)

gcc -E -c foo.c | sed 's/#define/#undef/'

或者做任何事情......

玩得开心:)

GNU cpp provides a -dM directive to do exactly that, you can list all the defines:

gcc -E -dM -c foo.c

You can then use a sed script to undef them on command line :)

gcc -E -c foo.c | sed 's/#define/#undef/'

or do whatever...

have fun :)

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