如何强制 gcc 预处理器保留空格?
对于代码:
int i;
gcc 预处理器输出:
int i;
如何强制它保留空格?
我使用 gcc -E somefile.c 命令调用预处理器。
For the code:
int i;
gcc preprocessor outputs:
int i;
How to force it to preserve whitespace?
I call preprocessor with: gcc -E somefile.c command.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在传统模式下使用它,即“-traditional-cpp”,如此处。
Use it in traditional mode, ie '-traditional-cpp' as described here.