While this is a nice improvement, it still needs work. The biggest problem is that:<p>1. Not all warnings have a -W command line option.<p>2. Sometimes a single -W option will control more than warning message.<p>Contrast this with pretty much every Microsoft Compiler (cl, csc, vbc, fsc, ilasm), where:<p>1. Every error and warning message has a unique number<p>2. The error pragmas and command line options all take numbers as input.<p>3. Errors and warnings are prefixed by their number in compiler output.<p>This makes it easy to know exactly what's being disabled, and what you need to type to disable any warning just by reading the compiler output. Doing that with gcc requires a lot of searching through docs, and usually a bit of trial and error. I wish gcc would adopt the Microsoft model here.