如何为特定目录或文件启用特定 gcc 警告?

发布于 2024-11-16 01:24:56 字数 313 浏览 3 评论 0原文

可能的重复:
有选择地仅对部分翻译禁用 GCC 警告单位?

如何为特定目录或文件启用特定 gcc 警告?

我想为我自己的文件而不是任何其他系统标头启用 -Wsign-conversion

Possible Duplicate:
Selectively disable GCC warnings for only part of a translation unit?

How to enable a specific gcc warnings for a specific directory or file ?

I want to enable -Wsign-conversion for my own files not for any other system headers

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

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

发布评论

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

评论(2

缺⑴份安定 2024-11-23 01:24:56

这一行应该可以做到这一点:(请参阅此处
#pragma GCC 诊断警告“-Wsign-conversion”

将其放入受影响的文件或所有文件中包含的标头中

This line should do it: (see here)
#pragma GCC diagnostic warning "-Wsign-conversion"

Put it in the affected files or in a header that is included in all you files

ㄖ落Θ余辉 2024-11-23 01:24:56

如果您想在源文件之外执行此操作,则需要引用您的构建系统。例如,在 make 中,您始终可以在 Makefile 中指定直接目标:

foo.o: foo.c
    $(CC) -o 
gt; -Wsign-conversion 
lt;

这将优先于一般的 .c->.o 规则,因为它更具体。

其他构建系统有其他方法来实现相同的规则。

简而言之,您的问题实际上是关于您的构建系统,而不是关于 gcc。

If you want to do it outside of your source file, then you need to reference your build system. E.g. in make you can always specify a direct target in the Makefile:

foo.o: foo.c
    $(CC) -o 
gt; -Wsign-conversion 
lt;

This will take precedence to a general .c->.o rule as it is more more specific.

Other build systems have other methods of achieving the same rule.

In short, your question is really about your build system, and not about gcc.

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