博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】各个层次的gcc警告 #pragma GCC diagnostic ignored "-Wunused-parameter" --不错
阅读量:5111 次
发布时间:2019-06-13

本文共 3960 字,大约阅读时间需要 13 分钟。

原文网址:http://blog.csdn.net/lizzywu/article/details/9419145

各个层次的gcc警告

从上到下覆盖
变量(代码)级:指定某个变量警告
int a __attribute__ ((unused));
指定该变量为"未使用的".即使这个变量没有被使用,编译时也会忽略则个警告输出.
文件级:在源代码文件中诊断(忽略/警告)
语法:
#pragma GCC diagnostic [error|warning|ignored] "-W<警告选项>"
诊断-忽略:(关闭警告)
#pragma  GCC diagnostic ignored  "-Wunused"
#pragma  GCC diagnostic ignored  "-Wunused-parameter"
诊断-警告:(开启警告)
#pragma  GCC diagnostic warning  "-Wunused"
#pragma  GCC diagnostic warning  "-Wunused-parameter"
诊断-错误:(开启警告-升级为错误)
#pragma  GCC diagnostic error  "-Wunused"
#pragma  GCC diagnostic error  "-Wunused-parameter"
用法:
在文件开头处关闭警告,在文件结尾出再开启警告,这样可以忽略该文件中的指定警告.
项目级:命令行/编译参数指定
警告:
gcc main.c -Wall 忽略:
gcc mian.c -Wall -Wno-unused-parameter //开去all警告,但是忽略 -unused-parameter警告
选项格式: -W[no-]<警告选项>
如 : -Wno-unused-parameter # no- 表示诊断时忽略这个警告

来源:https://github.com/zodiac1111/note/blob/master/note/gcc/gcc-ignored-warning.markdown#%E6%96%87%E4%BB%B6%E7%BA%A7%E5%9C%A8%E6%BA%90%E4%BB%A3%E7%A0%81%E6%96%87%E4%BB%B6%E4%B8%AD%E8%AF%8A%E6%96%AD%E5%BF%BD%E7%95%A5%E8%AD%A6%E5%91%8A

 

 


6.59.10 Diagnostic Pragmas

 

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.
#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’.

来源:

 

example:

#pragma GCC diagnostic push

#pragma GCC diagnostic ignored "-Wunused-label"
....

#pragma GCC diagnostic pop

 

转载于:https://www.cnblogs.com/wi100sh/p/4565595.html

你可能感兴趣的文章
SpringBoot集成Redis做缓存处理
查看>>
停更声明
查看>>
JAVA金额格式字符串转数值
查看>>
C++ Primer 笔记——数组
查看>>
SQL Server 数据类型映射(转载)
查看>>
android handler异步处理机制详解(线程局部存储(TLS)知识点)
查看>>
汇编实验5
查看>>
Error:/etc/fstab:Read-only file system错误的解决办法
查看>>
Jquery中AJAX
查看>>
VS2010 打开提示devenv.exe错误提示
查看>>
quartus保留节点
查看>>
CCD 驱动 时序理解
查看>>
SaaS “可配置”和“多租户”架构的几种技术实现方式
查看>>
测试的发展之路
查看>>
忘记Jenkins管理员密码的解决办法
查看>>
CNN发表声明向中国人道歉
查看>>
阿里云服务安装随笔
查看>>
搭建MyBatis开发环境步骤
查看>>
Jenkins - 构建Allure Report
查看>>
mysql client中使用帮助命令
查看>>