循环遍历 C 预处理器中的标头
有没有办法循环遍历所有包含/定义的头文件,然后#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GNU cpp 提供了一个 -dM 指令来做到这一点,您可以列出所有定义:
然后您可以使用 sed 脚本在命令行上取消定义它们:)
或者做任何事情......
玩得开心:)
GNU cpp provides a -dM directive to do exactly that, you can list all the defines:
You can then use a sed script to undef them on command line :)
or do whatever...
have fun :)