简体   繁体   中英

How to disable warnings when compiling C code?

I am working on 32-bit Fedora 14 system. I'm compiling my source code using gcc .

Does anybody know how to disable warnings while compiling c code?


EDIT: Yes i know. Best thing is to fix those Warnings to avoid any undefined/unknown behavior. But currently here, i have written huge code first time and there are lots of error & warning in first compilation. Here i just want to concentrate on errors first and then i will see warnings.

try to add -w option when compiling

http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html

Every body tells use -Wall switch with gcc, but you want to disable it. It is not advised, Use debugger to find it.

Linus Torvalds:

"But it clearly is the only right way. The fact that everybody else does it some other way only means that they are wrong"

The best is to find the problem. It will prevent you in future looking for errors, which would not have occured, if you fixed the actual one.

But, if you're sure there is no bug or you have assured the problem is caught by your code, place this somewhere in the file (where 177 the number of your warning is):

#pragma diag_suppress 177 // supress #177-D function  was declared but never referenced

假设您收到警告-Wfoo-bar尝试添加编译标志-Wno-foo-bar

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM