vote up 3 vote down star
1

Hi,

I am a newbie in C++ programming. When compiling I never use any option.

This is my day to day command:

g++ MyCode.cc -o MyCode

For safety practice what's the best option to use?

flag

Just a few results from the search: stackoverflow.com/questions/154630/… stackoverflow.com/questions/399850/… – unknown (google) Feb 20 at 8:20
You can achieve the same result by typing make – Martin York Feb 20 at 9:08

10 Answers

vote up 13 vote down check
g++ -W -Wall -Werror

Will display all errors and warnings possible and treat them as errors.

link|flag
2  
To the OP - Do what this poster suggests! You will save yourself many headaches if you just listen to the compiler warnings. Do not ignore them! – eduffy Feb 20 at 14:44
1  
Actually, it doesn't enable all possible warnings. -Wwrite-strings and -Wconversion are good too. – Steve Jessop Jul 13 at 22:27
vote up 11 vote down

“-Werror”: treats all warnings as errors so you have to fix them. Incredibly valuable.

link|flag
1  
Along with -Wall to turn on all the useful warnings, of course. – Greg Hewgill Feb 20 at 8:15
vote up 4 vote down

Actually, it's a set: -Wall -pedantic -std=c++98

link|flag
vote up 4 vote down
g++ -Wall -Weffc++ -Werror -pedantic

When I'm using Boost, though, I drop it down to:

g++ -Wall -Werror

I'm anxiously awaiting GCC 4.4 and 4.5, though. There are some features coming that I really badly need.

link|flag
What are the 4.4/4.5 features you're waiting for? – Ned Feb 20 at 12:39
Lambdas (which I'm hoping show up in 4.5), auto variables (4.4), strongly-typed enums (4.4), and, most importantly, atomic<>, which I'm desperately hoping gets done in 4.5. – greyfade Feb 20 at 18:04
Unfortunately, -Weffc++ makes objects with internal pointers a nightmare. – Tom Mar 17 at 13:01
I know. That's why I don't use it with Boost - just including a Boost header creates another 30-40 warnings. – greyfade Mar 17 at 16:52
vote up 8 vote down
g++ -g

I really need that debug information....

link|flag
vote up 7 vote down

If you thought you caught everything, try -Wextra

link|flag
vote up 3 vote down

-pipe, it speeds up compilation a little bit. Also -O2, which speeds up execution.

link|flag
Optimization will generally interfere with debugging. For a newbie, using the -g and without -Ox would be preferable. – Calyth Feb 20 at 22:25
What speed improvements have you seen with -pipe? I find it doesn't make a significant difference, as the bulk of the time is spent linking (which can't be parallelized across multiple cores, like compilation). – Tom Mar 17 at 13:02
vote up 2 vote down

I like -march=athlon -O2 -pipe for building most programs (I run Gentoo at home), and I use -ansi -pedantic -Wall for code I write myself.

link|flag
vote up 2 vote down

We always use

g++ -Wall -Wextra ...
link|flag
vote up 1 vote down

-ansi -pedantic

-D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS -D__STDC_LIMIT_MACROS -D_GNU_SOURCE -D_REENTRANT

-Wall -Wextra -Wwrite-strings -Winit-self -Wcast-align -Wcast-qual -Wold-style-cast -Wpointer-arith -Wstrict-aliasing -Wformat=2 -Wuninitialized -Wmissing-declarations -Woverloaded-virtual -Wnon-virtual-dtor -Wctor-dtor-privacy -Wno-long-long

-O3 -ftree-vectorize -ftree-vectorizer-verbose=2 -ffast-math -fstrict-aliasing -march=native/pentium4/nocona/core2 -msse2 -mfpmath=sse

link|flag

Your Answer

Get an OpenID
or

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