Penguin
Note: You are viewing an old revision of this page. View the current version.

When running gcc(1), -Wall is the CommandLine option that enables all warnings. Generally the first thing people will look for when debugging or helping others with C/C++ code is that it compiles with -Wall.

-Wall warns about a great many things which are normally harmless in normal circumstances but can be dangerous at others. -pedantic warns against things that are technically wrong but cannot lead to problems for gcc(1) and -pedantic-errors issues errors for such quibbles. -pedantic and -pedantic-errors are not usually used unless the code is being written with the intention of porting it to exotic hardware.

It is often a good idea to add -Wall to your CFLAGS environment variable. The second thing to do after adding -Wall is to add -g so you can get debugging symbols when your program crashes.

Many programmers have a line similar to

export CFLAGS="-Wall -g"

in their .profile.