我是靠谱客的博主 贤惠面包,最近开发中收集的这篇文章主要介绍GCC 消除编译器的特定警告pragma GCC diagnostic kind optionpragma GCC diagnostic warning "-Wformat"pragma GCC diagnostic error "-Wformat"pragma GCC diagnostic ignored "-Wformat"pragma GCC diagnostic pushpragma GCC diagnostic poppragma GCC diagnostic error "-Wuni,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

GCC allows the user to selectively enable or disable certain types of diagnostics, and change the kind of the diagnostic. For example, a project’s policy might require that all sources compile with -Werror but certain files might have exceptions allowing specific types of warnings. Or, a project might selectively enable diagnostics and treat them as errors depending on which preprocessor macros are defined.

pragma GCC diagnostic kind option

Modifies the disposition of a diagnostic. Note that not all diagnostics are modifiable; at the moment only warnings (normally controlled by ‘-W…’) can be controlled, and not all of them. Use -fdiagnostics-show-option to determine which diagnostics are controllable and which option controls them.

kind is ‘error’ to treat this diagnostic as an error, ‘warning’ to treat it like a warning (even if -Werror is in effect), or ‘ignored’ if the diagnostic is to be ignored. option is a double quoted string that matches the command-line option.

pragma GCC diagnostic warning "-Wformat"

pragma GCC diagnostic error "-Wformat"

pragma GCC diagnostic ignored "-Wformat"

Note that these pragmas override any command-line options. GCC keeps track of the location of each pragma, and issues diagnostics according to the state as of that point in the source file. Thus, pragmas occurring after a line do not affect diagnostics caused by that line.

pragma GCC diagnostic push

pragma GCC diagnostic pop

Causes GCC to remember the state of the diagnostics as of each push, and restore to that point at each pop. If a pop has no matching push, the command-line options are restored.

pragma GCC diagnostic error "-Wuninitialized"

foo(a); /* error is given for this one */

pragma GCC diagnostic push

pragma GCC diagnostic ignored "-Wuninitialized"

foo(b); /* no diagnostic for this one */

pragma GCC diagnostic pop

foo(c); /* error is given for this one */

pragma GCC diagnostic pop

foo(d); /* depends on command-line options */
GCC also offers a simple mechanism for printing messages during compilation.

pragma message string

Prints string as a compiler message on compilation. The message is informational only, and is neither a compilation warning nor an error. Newlines can be included in the string by using the ‘n’ escape sequence.

pragma message "Compiling " FILE "..."

string may be parenthesized, and is printed with location information. For example,

define DO_PRAGMA(x) _Pragma (#x)

define TODO(x) DO_PRAGMA(message ("TODO - " #x))

TODO(Remember to fix this)
prints ‘/tmp/file.c:4: note: #pragma message: TODO - Remember to fix this’.

pragma GCC error message

Generates an error message. This pragma is considered to indicate an error in the compilation, and it will be treated as such.

Newlines can be included in the string by using the ‘n’ escape sequence. They will be displayed as newlines even if the -fmessage-length option is set to zero.

The error is only generated if the pragma is present in the code after pre-processing has been completed. It does not matter however if the code containing the pragma is unreachable:

if 0

pragma GCC error "this error is not seen"

endif

void foo (void)
{
return;

pragma GCC error "this error is seen"

}

pragma GCC warning message

This is just like ‘pragma GCC error’ except that a warning message is issued instead of an error message. Unless -Werror is in effect, in which case this pragma will generate an error as well.

转载于:https://www.cnblogs.com/Dennis-mi/articles/9316897.html

最后

以上就是贤惠面包为你收集整理的GCC 消除编译器的特定警告pragma GCC diagnostic kind optionpragma GCC diagnostic warning "-Wformat"pragma GCC diagnostic error "-Wformat"pragma GCC diagnostic ignored "-Wformat"pragma GCC diagnostic pushpragma GCC diagnostic poppragma GCC diagnostic error "-Wuni的全部内容,希望文章能够帮你解决GCC 消除编译器的特定警告pragma GCC diagnostic kind optionpragma GCC diagnostic warning "-Wformat"pragma GCC diagnostic error "-Wformat"pragma GCC diagnostic ignored "-Wformat"pragma GCC diagnostic pushpragma GCC diagnostic poppragma GCC diagnostic error "-Wuni所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部