Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

-o changes the output filename (I found that using --help)

But I can't find out what -Wall does?

share|improve this question
4  
"man gcc" on your console tells you everything about this flag and a simple google search with "gcc -Wall" as well... – David Sauter Mar 9 '10 at 9:59
As a general tip, try reading the man entries for programs if you want to know what a switch does, or what switches are available. The man page of gcccan be read on linux.die.net/man/1/gcc - you can do a quick search there for the text "-Wall" – gnud Mar 9 '10 at 10:00
@David Sauter, Google will not find anything with "-wall". It will exclude all "wall" from search. – Kirill V. Lyadvinsky Mar 9 '10 at 10:01
@Kirill Not if you use quotes, like I'm guessing David mean – gnud Mar 9 '10 at 10:01
See the quotes in my comment? :) – David Sauter Mar 9 '10 at 10:02
show 2 more comments

5 Answers

up vote 20 down vote accepted

It's short for "warn all" -- it turns on (almost) all the warnings that g++ can tell you about. Typically a good idea, especially if you're a beginner, because understanding and fixing those warnings can help you fix lots of different kinds of problems in your code.

share|improve this answer
11  
More warnings (some of which are pretty useful) can be turned on with -Wextra and -pedantic. – gnud Mar 9 '10 at 9:58

It enables all warnings. (reads as "Warning All")

share|improve this answer
There are actually a lot of warnings it doesn't enable (such as nonvirtual dtor in a class with virtual methods). – Mark B Mar 9 '10 at 15:28

It enables warnings which are deemed useful and easy to avoid at the source by gcc writers. There is also -W (-Wextra in newer releases) which are deemed useful but for which work-arounding false positives can be difficult or result in clumsy code.

gcc has also a bunch of other warnings, generally less useful. See http://gcc.gnu.org/onlinedocs/gcc-4.4.3/gcc/Warning-Options.html#Warning-Options

share|improve this answer

See man gcc.

-Wall turns on these warnings:

-Waddress -Warray-bounds (only with -O2) -Wc++0x-compat -Wchar-subscripts
-Wenum-compare (in C/Objc; this is on by default in C++) -Wimplicit-int (C and
 Objective-C only) -Wimplicit-function-declaration (C and Objective-C only) 
-Wcomment -Wformat -Wmain (only for C/ObjC and unless -ffreestanding) 
-Wmissing-braces -Wnonnull -Wparentheses -Wpointer-sign -Wreorder -Wreturn-type 
-Wsequence-point -Wsign-compare (only in C++) -Wstrict-aliasing 
-Wstrict-overflow=1 -Wswitch -Wtrigraphs -Wuninitialized -Wunknown-pragmas 
-Wunused-function -Wunused-label -Wunused-value -Wunused-variable 
-Wvolatile-register-var

-Wextra contains:

-Wclobbered -Wempty-body -Wignored-qualifiers -Wmissing-field-initializers
-Wmissing-parameter-type (C only) -Wold-style-declaration (C only) -Woverride-init
-Wsign-compare -Wtype-limits -Wuninitialized -Wunused-parameter (only with -Wunused
 or -Wall) -Wunused-but-set-parameter (only with -Wunused or -Wall)

There are many more warnings which you have to turn on explicitly.

E.g. for our C code we use:

-Wall -Wextra -Waggregate-return -Wcast-align -Wcast-qual -Wdisabled-optimization -Wdiv-by-zero -Wendif-labels -Wformat-extra-args -Wformat-nonliteral -Wformat-security -Wformat-y2k -Wimplicit -Wimport -Winit-self -Winline -Winvalid-pch -Wjump-misses-init -Wlogical-op -Werror=missing-braces -Wmissing-declarations -Wno-missing-format-attribute -Wmissing-include-dirs -Wmultichar -Wpacked -Wpointer-arith -Wreturn-type -Wsequence-point -Wsign-compare -Wstrict-aliasing -Wstrict-aliasing=2 -Wswitch -Wswitch-default -Werror=undef -Wno-unused -Wvariadic-macros -Wwrite-strings -Wc++-compat -Werror=declaration-after-statement -Werror=implicit-function-declaration -Wmissing-prototypes -Werror=nested-externs -Werror=old-style-definition -Werror=strict-prototypes

share|improve this answer

It shows all warnings. I'd recommend also use -pedantic to warn about some non-conformant parts of code.

share|improve this answer
For gcc doc: "Some users try to use -pedantic to check programs for strict ISO C conformance. They soon find that it does not do quite what they want: it finds some non-ISO practices, but not all—only those for which ISO C requires a diagnostic, and some others for which diagnostics have been added." – AProgrammer Mar 9 '10 at 10:14
It doesn't give 100% guarantee, but it helps. – Kirill V. Lyadvinsky Mar 9 '10 at 11:23
If you hadn't written some instead of all in "to warn about all non-conformant parts", I wouldn't have commented. But your current formulation just spread the misconception the gcc documentation warn against. – AProgrammer Mar 9 '10 at 12:13
Fixed. But in practice it is rather looks like a "most of" and not "some". – Kirill V. Lyadvinsky Mar 9 '10 at 13:05
It shows many warnings, not all. – Bill Mar 9 '10 at 17:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.