为什么 GCC 4.2.1 忽略 #pragma GCC 诊断忽略“-Wcast-qual”在某些条件下?

发布于 2024-12-10 09:38:51 字数 652 浏览 0 评论 0原文

这是我的测试程序:

#include <stdio.h>
#pragma GCC diagnostic ignored "-Wcast-qual"

static void proc(char *buf)
{
    printf("buf=%p\n",buf);
}

int main(int argc,char **argv)
{
    const char *cbuf;
    char *buf = (char *)cbuf;
    proc(buf);
    return(0);
}

这是我的编译:

$ g++ -Wcast-qual    x.cpp
x.cpp: In function ‘int main(int, char**)’:
x.cpp:13: warning: cast from type ‘const char*’ to type ‘char*’ casts away constness
$ 

这是没有 -Wcast-qual 的编译:

$ g++ x.cpp
$ 

我在代码的其他地方使用了 #pragma GCC Diagnostic Been ,没有任何问题。这里不起作用。有人能告诉我为什么吗?

Here is my test program:

#include <stdio.h>
#pragma GCC diagnostic ignored "-Wcast-qual"

static void proc(char *buf)
{
    printf("buf=%p\n",buf);
}

int main(int argc,char **argv)
{
    const char *cbuf;
    char *buf = (char *)cbuf;
    proc(buf);
    return(0);
}

Here is my compile:

$ g++ -Wcast-qual    x.cpp
x.cpp: In function ‘int main(int, char**)’:
x.cpp:13: warning: cast from type ‘const char*’ to type ‘char*’ casts away constness
$ 

And here is the compile without the -Wcast-qual:

$ g++ x.cpp
$ 

I've used #pragma GCC diagnostic ignored in other places of my code without problems. Here it is not working. Can somebody tell me why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

对你再特殊 2024-12-17 09:38:51

这是 Mac 上的编译器错误。 Linux 上的 GCC 4.7.2 没有这个问题。 clang++ 也没有。在 Mac 上,您应该尝试使用 clang++,而不是 g++。

苹果应该更新它的编译器。

It's a compiler bug on the Mac. GCC 4.7.2 on Linux does not have this problem. Neither does clang++. On the Mac you should try to use clang++, not g++.

Apple should update its compiler.

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