Tagged Questions

g++ is the C++ frontend to the GNU Compiler Collection (gcc). A frontend is responsible for performing lexical, syntactic, and semantic analysis, and transforms the source code into a syntax tree, which the backend translates into (intermediate or machine) executable code. A compiler suite can have several frontends for different languages.

learn more… | top users | synonyms

64
votes
5answers
1k views

Is this an g++ optimization bug?

Below code works on Visual Studio 2008 with and without optimization. But it only works on g++ without optimization (O0). #include <cstdlib> #include <iostream> #include <cmath> ...
55
votes
5answers
17k views

What is the difference between g++ and gcc?

What is the difference between g++ and gcc? Which ones should be used for general c++ development?
38
votes
2answers
474 views

GNU GCC (g++): Why does it generate multiple dtors?

Developing environment: GNU GCC (g++) 4.1.2 While I'm trying to investigate how to increase 'code coverage - particularly function coverage' in unit testing, I've found that some of class dtor seems ...
29
votes
4answers
29k views

C++: undefined reference to static class member

Hey, Can anyone explain why following code won't compile? At least on g++ 4.2.4. And more interesting, why it will compile when I cast MEMBER to int? #include <vector> class Foo { public: ...
23
votes
2answers
3k views

GCC dump preprocessor defines

Is there a way for gcc/g++ to dump its preprocessor defines from the command line? I mean things like __GNUC__, __STDC__, and so on.
23
votes
4answers
812 views

Is this valid C++ code?

I had the following code, which was basically, class foo { public: void method(); }; void foo::foo::method() { } I had accidentally added an extra foo:: in front of the definition of ...
21
votes
3answers
609 views

What does the >?= operator mean?

Looking through this C++ BigInt library: http://shygypsy.com/tools/BigInt.cpp there's a comment at the top about compatibility: This class was written for the g++ compiler and uses some of the g++ ...
21
votes
3answers
2k views

GCC error with variadic templates: “Sorry, unimplemented: cannot expand 'Identifier…' into a fixed-length arugment list”

While doing variadic template programming in C++11 on GCC, once in a while I get an error that says "Sorry, unimplemented: cannot expand 'Identifier...' into a fixed-length arugment list." If I ...
20
votes
8answers
23k views

g++ undefined reference to typeinfo

I just ran across the following error (and found the solution online, but it's not present in Stack Overflow): (.gnu.linkonce.[stuff]): undefined reference to [method] [object ...
19
votes
8answers
4k views

Why can you return from a non-void function without returning a value without producing a compiler error?

Ever since I realized many years ago, that this doesn't produce an error by default, (in gcc at least) I've always wondered why? I understand that you can issue compiler flags to produce a warning, ...
18
votes
3answers
148 views

How do I prevent trouble arising from std::string being constructed from `0`?

void foo (const std::string &s) {} int main() { foo(0); //compiles, but invariably causes runtime error return 0; } The compiler (g++ 4.4) apparently interprets 0 as char* NULL, and ...
17
votes
5answers
598 views

Why vector<bool>::reference doesn't return reference to bool?

#include <vector> struct A { void foo(){} }; template< typename T > void callIfToggled( bool v1, bool &v2, T & t ) { if ( v1 != v2 ) { v2 = v1; ...
17
votes
6answers
394 views

Strange zero initialization with g++

I came across on a strange behavior of the following code, while playing around with initialization of ints using g++ 4.4.3. int main() { int x(int()); int y = int(); ...
17
votes
6answers
15k views

How to make a variadic macro (variable number of arguments)

I want to write a macro in C that accepts any number of parameters, not a specific number example: #define macro( X ) something_complicated( whatever( X ) ) where X is any number of parameters I ...
16
votes
12answers
2k views

How to speed up g++ compile time (when using a lot of templates)

This question is perhaps somehow odd, but how can I speed up g++ compile time? My C++ code heavily uses boost and templates. I already moved as much as possible out of the headers files and use the -j ...
16
votes
5answers
3k views

Tail recursion in C++

Can someone show me a simple tail-recursive function in C++? Why is tail recursion better, if it even is? What other kinds of recursion are there besides tail recursion?
15
votes
2answers
360 views

error: invalid suffix “b11111111111111111111111111111111” on integer constant

I am using g++ version 4.1.2 on a RHEL 5.7 x86_64 box. This builds just fine with g++ version 4.4.5 which comes with RHEL 6.0 x86_64. What does this compiler error mean and how do you fix it? ...
15
votes
5answers
6k views

Why do I need to use typedef typename in g++ but not VS?

It had been a while since GCC caught me with this one, but it just happened today. But I've never understood why GCC requires typedef typename within templates, while VS and I guess ICC don't. Is the ...
14
votes
2answers
245 views

Strange GCC Behaviour

Given the following C++ code: struct vertex_type { float x, y, z; //vertex_type() {} //vertex_type(float x, float y, float z) : x(x), y(y), z(z) {} }; typedef struct { vertex_type ...
14
votes
2answers
298 views

Capturing reference variable by copy in C++0x lambda

According to the answers and comments for this question, when a reference variable is captured by value, the lambda object should make a copy of the referenced object, not the reference itself. ...
14
votes
2answers
3k views

playing with GCC 4.6 on windows

I am very pleased to find out that GCC 4.6 supports the range-based for loop. I found an experimental release of MinGW 4.6 on xvidvideo.ru, is that a well-known, reliable website? What other options ...
14
votes
5answers
590 views

Understanding how dynamic linking works on UNIX

Consider we have the following situation: a program named program which depends dynamically on libfoo.so libfoo.so that depends on nothing (well, it depends on libstdc++ and stuff but I guess we can ...
14
votes
4answers
712 views

Good URLs for tracking implementation progress of C++0x in MSVC and GCC

Does anyone know good URLs/Sites/mailing lists to track the current implementation progress of C++0x features in MSVC and GCC? BTW: Yes I know there is boost but because I'm also very interested in ...
14
votes
7answers
10k views

Update GCC on OSX

So I am a new programmer and I just installed XCode on my Macbook to get the GCC. I think Xcode is the only way for getting GCC on OSX. Now when I run my Hello World application, in C++, g++ comes up ...
14
votes
8answers
4k views

How do I check if gcc is performing tail-recursion optimization?

How do I tell if gcc (more specifically, g++) is optimizing tail recursion in a particular function? (Because it's come up a few times: I don't want to test if gcc can optimize tail recursion in ...
14
votes
3answers
6k views

Undefined Symbol ___gxx_personality_v0 on link

I've been getting this undefined symbol building with this command line: $ gcc test.cpp Undefined symbols: "___gxx_personality_v0", referenced from: etc... test.cpp is simple and should build ...
13
votes
1answer
301 views

Uniform initialization of references

I am currently trying to understand the new uniform initialization of C++0x. Unfortunately, I stumpled over using uniform initialization of references. Example: int main() { int a; int ...
13
votes
7answers
741 views

optimization of access to members in c++

I'm running into an inconsistent optimization behavior with different compilers for the following code: class tester { public: tester(int* arr_, int sz_) : arr(arr_), sz(sz_) {} ...
13
votes
2answers
2k views

Atomic swap in GNU C++

I want to verify that my understanding is correct. This kind of thing is tricky so I'm almost sure I am missing something. I have a program consisting of a real-time thread and a non-real-time ...
13
votes
7answers
29k views

GCC C++ Linker errors: Undefined reference to 'vtable for XXX', Undefined reference to 'ClassName::ClassName()'

I'm setting up a C++ project, on Ubuntu x64, using Eclipse-CDT. I'm basically doing a hello world and linking to a commerical 3rd party library. I've included the header files, linked to their ...
12
votes
3answers
562 views

GNU STL string: is copy-on-write involved here?

(Disclaimer: I don't know what the C++ standard might say about this..I know, I'm horrible) while operating on very large strings I noticed that std::string is using copy-on-write. I managed to write ...
12
votes
8answers
760 views

When did “and” become an operator in C++

I have some code that looks like: static const std::string and(" AND "); This causes an error in g++ like so: Row.cpp:140: error: expected unqualified-id before '&&' token so after ...
12
votes
4answers
2k views

Does the restrict keyword provide significant anti-aliasing benefits in gcc / g++

Has anyone seen any numbers / analysis on whether or not use of the C / C++ restrict keyword in gcc / g++ actual provides any significant performance boost in reality ( and not just in theory )? I've ...
12
votes
7answers
1k views

How to detect whether there is a specific member variable in class?

For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class or GDI+ PointF ...
12
votes
3answers
414 views

Can you really have a function/method without a body but just a try/catch block?

Note that this function does not have a "{" and "}" body. Just a try/catch block: void func( void ) try { ... } catch(...) { ... } Is this intentionally part of C++, or is this a g++ ...
11
votes
2answers
930 views

C++0x IDE support with g++

Possible Duplicate: What Windows C++ IDEs support the new C++0X standard? What IDE has a better support for the new C++0x features in g++? I know you can use the editor as is and compile ...
11
votes
1answer
151 views

Which compiler is right? 'template' before templated return type needed?

This snippet (taken from this question) compiles fine with g++ (as seen), so long the template before the return type is there. In contrast, VC10 does not compile that code with the following error: ...
11
votes
4answers
248 views

Why does my C++0x code fail to compile if I include the “-ansi” compiler option?

I've come across a really weird error that only pops up if I use the ansi flag. Here's minimal.hpp: #ifndef TEST_HPP #define TEST_HPP #include <memory> class Test { public: explicit ...
11
votes
3answers
332 views

Potential g++ template bug?

I've encountered some code which I think should compile, but doesn't. So I'm hoping some of the local standards experts here at SO can help :-). I basically have some code which resembles this: ...
11
votes
2answers
952 views

How to use profile guided optimizations in g++?

Also, can anyone point me to a good tutorial on the subject? I can't find any.
11
votes
2answers
2k views

GNU C++ how to check when -std=c++0x is in effect?

My system compiler (gcc42) works fine with the TR1 features that I want, but trying to support newer compiler versions other than the systems, trying to accessing TR1 headers an #error demanding the ...
11
votes
2answers
494 views

Undefined template methods trick?

A colleague of mine told me about a little piece of design he has used with his team that sent my mind boiling. It's a kind of traits class that they can specialize in an extremely decoupled way. ...
11
votes
1answer
486 views

C++0x optimizing compiler quality

I do some heavy numbercrunching and for me floating-point performance is very important. I like performance of Intel compiler very much and quite content with quality of assembly it produces. I am ...
11
votes
5answers
1k views

x86: howto catch data-alignment faults (aka SIGBUS on sparc)

Is it somehow possible to catch data-alignment faults even on i386? Maybe by setting a i386 specific machine register or something like that. On Solaris-Sparc I am receiving a SIGBUS in this case, ...
11
votes
4answers
8k views

C++ templates, undefined reference

I have a function declared like so: template <typename T> T read(); and defined like so: template <typename T> T packetreader::read() { offset += sizeof(T); return ...
11
votes
3answers
4k views

How to supress specific warnings in g++

I want to suppress specific warnings from g++. I'm aware of the -Wno-XXX flag, but I'm looking for something more specific. I want some of the warnings in -Weffc++, but not all of them. Something like ...
10
votes
2answers
188 views

“template” keyword not needed? [gcc/clang/Comeau bug?]

Here is the test code template <class T> void f() { T t; t.f<T>(0); //compiles even without the "template" keyword, what am I missing? } class abc { public: template <typename ...
10
votes
4answers
200 views

g++ warning when using optional 'struct' keyword

If I write this program: #include <iostream> namespace foo { struct bar { int x; }; } int main (void) { struct foo::bar *a = new struct foo::bar; delete a; return ...
10
votes
3answers
238 views

Why does g++ store class names in the compiled binary?

I noticed that If I run strings on my program which was compiled by g++ the output contains the names of various classes that it uses. The program was compiled with -O3 and without -g or -p, and the ...
10
votes
1answer
219 views

Find out which functions were inlined

When compiling C++ with GCC 4.4 or MSVC is it possible to get the compiler to emit messages when a function is inlined?

1 2 3 4 5 32