| An Introduction to GCC - for the GNU compilers gcc and g++ by Brian J. Gough, foreword by Richard M. Stallman Paperback (6"x9"), 144 pages ISBN 0954161793 RRP £12.95 ($19.95) "Answers common questions and provides many useful hints" --- Dr. Gerald Pfeifer (SUSE) -- Technical Editor Get a printed copy>>> |
7.2 C++ compilation options
Most GCC options can be used for both C and C++ programs, but there are
also a few options which are specific to each language. This section
describes some of the additional options, and enhancements to existing
options, that are available in g++.
-Walland-W-
When compiling with
g++, the options-Walland-Winclude extra warnings specific to C++ (the warnings relate to member functions and virtual classes). The use of these options is always recommended while developing a program. -fno-default-inline-
This option disables the default inlining of member functions defined in
the bodies of C++ classes. GCC normally inlines all such
functions when optimization is turned on, even if they do not explicitly
use the
inlinekeyword. Select this option if you prefer to control inlining yourself, or want to set a breakpoint on member functions that would otherwise be inlined (since it is not possible to set a breakpoint on an inlined function). -Weffc++- This option warns about C++ code which breaks some of the programming guidelines given in the books "Effective C++" and "More Effective C++" by Scott Meyers. For example, a warning will be given if a class which uses dynamically allocated memory does not define a copy constructor and an assignment operator. Note that the standard library header files do not follow these guidelines, so you may wish to use this option as an occasional test for possible problems in your own code rather than compiling with it all the time.
-Wold-style-cast-
This option highlights any uses of C-style casts in C++ programs. The
C++ language provides the keywords
static_cast,dynamic_cast,reinterpret_castandconst_castfor handling casts and these are often preferable (although C-style casts are still allowed).
| ISBN 0954161793 | An Introduction to GCC - for the GNU compilers gcc and g++ | See the print edition |