如何消除有关粘贴某些标记的预处理器警告
gcc 是否可以消除下面的警告而不消除所有警告?
粘贴“/”和“/”不会给出有效的预处理令牌
对于某个平台,我必须使用特定的交叉编译器,但我可以使用make,所以我使用gcc来创建依赖项。
我知道我将“//”标记传递给编译器,这不是问题,所以我希望 gcc 停止抱怨它。
Is it possible with gcc to eliminate the warning below without eliminating all warnings?
pasting "/" and "/" does not give a valid preprocessing token
For a certain platform, I must use a specific cross-compiler, but I can use make, so I use gcc to create the dependencies.
I know that I'm passing the “//” token to the compiler and it’s not a problem, so I’d like gcc to stop complaining about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到目前为止,我发现解决此问题的唯一方法就是从 g++ 中隐藏此构造,如下所示:
由于我在这里仅使用 g++ 来创建依赖项,因此我可以隐藏代码。
The only way I've found so far to work around this issue is to just hide this construct from g++, like so:
Since I'm only using g++ here to create dependencies, I can just hide the code.