GCC 预处理器删除注释
是否可以指示GCC预处理器在处理文件时不删除注释?
Is it possible to instruct the GCC preprocessor not to remove comments when processing files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以指示GCC预处理器在处理文件时不删除注释?
Is it possible to instruct the GCC preprocessor not to remove comments when processing files?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
GCC 有 -C 选项来保留注释。
GCC has the -C option to preserve comments.
是的,您可以使用
-C
选项来做到这一点。例如Yes, you can do it with the
-C
option. E.g.man gcc
并使用 / -C (斜线、空格、破折号、大写 C)来减少(可能是你的寻呼机程序)搜索 -C 选项,使用n 再次搜索(描述是第三次命中)。相关选项在上面和下面。man gcc
and use / -C (slash, space, dash, capitcal C) to make less (which is probably your pager program) search for the -C option, use n to search again (the description is the 3rd hit). Related options are both above and below.