如何消除有关粘贴某些标记的预处理器警告

发布于 2024-09-28 05:20:01 字数 166 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

又爬满兰若 2024-10-05 05:20:01

到目前为止,我发现解决此问题的唯一方法就是从 g++ 中隐藏此构造,如下所示:

#if __GNUC__
  #define EMPTY
#else
  #define SLASH(s) /##s
  #define EMPTY ; SLASH(/)
#endif

由于我在这里仅使用 g++ 来创建依赖项,因此我可以隐藏代码。

The only way I've found so far to work around this issue is to just hide this construct from g++, like so:

#if __GNUC__
  #define EMPTY
#else
  #define SLASH(s) /##s
  #define EMPTY ; SLASH(/)
#endif

Since I'm only using g++ here to create dependencies, I can just hide the code.

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