Lines Matching full:warnings
39 <li><a href="#diagnostics">Controlling Errors and Warnings</a>
46 <li><a href="#diagnostics_enable_everything">Enabling All Warnings</a></li>
184 <p><b>-Werror</b>: Turn warnings into errors.</p>
190 <p><b>-w</b>: Disable all warnings.</p>
193 <p><b>-Wsystem-headers</b>: Enable warnings from system headers.</p>
435 <dd>This option, which defaults to on, enables warnings about extra tokens at
478 <dd>This option, which defaults to on, enables warnings about binding a
540 <h3 id="diagnostics">Controlling Errors and Warnings</h3>
598 builds that produce a large number of errors or warnings in a grouped way.
617 pragmas in the source code. This is useful for turning off specific warnings
622 Warnings may be set to ignored, warning, error, or fatal. The following
623 example code will tell Clang or GCC to ignore the -Wall warnings:</p>
652 GCC do not support the exact same set of warnings, so even when using GCC
656 <h4 id="diagnostics_enable_everything">Enabling All Warnings</h4>
659 warnings by passing <tt>-Weverything</tt>.
661 and also includes the warnings from <tt>-pedantic</tt>.</p>
663 <p>Note that when combined with <tt>-w</tt> (which disables all warnings), that
676 static analyzer warnings or teach the analyzer about code invariants which
697 analyzer warnings (some of which can already be done using <a
914 <li>Some warnings are different.</li>