Issue
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.
Solution
try to add -w option when compiling
http://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
Answered By - frx08 Answer Checked By - Willingham (WPSolving Volunteer)