vote up 2 vote down star
1

Currently, MinGW's only installs the 3.x.x series of the gcc compiler by default. However, it looks like the 4.x.x series of compilers have been out for some time, and as others have mentioned, it seems to work just fine. Is there any reason why it hasn't moved to the 4.x.x versions yet, and any reason why I shouldn't use the newer versions of gcc?

flag

3 Answers

vote up 1 vote down check

GCC4's C++ ABI has changed from GCC3, and it includes a lot of new features (like its tree vectorization) that a lot of people still consider "experimental." There are still a few Linux distributions still using GCC3 for that reason.

link|flag
2  
The major C++ abi change was like back in 2001. About 10 years has passed. TEN YEARS! Why can't you just get along with it? – Pavel Shved Oct 14 at 21:04
1  
When gcc fully supports C99, maybe we can validly complain that people shouldn't still be using an ABI replaced 10 years ago. – Steve Jessop Oct 14 at 21:29
I'm aware of at least 3 ABI changes since GCC-2.95: 3.0, 3.3, and 4.0. I don't know exactly what changed, only that something did. Jerry noted that the exception mechanism was among those changes. – greyfade Oct 14 at 22:16
vote up 2 vote down

The issue appears to be that they've changed the exception handling mechanism in a way that breaks the ABI. That means you can't (for example) drop in the new compiler and continue to use old object files and/or libraries. You have to re-compile everything from source code to get working results at all.

link|flag
1  
and the problem is? :) – Anacrolix Oct 28 at 11:21
vote up 2 vote down

The TDM GCC/MinGW32 builds installer includes gcc 4.4.x and all the core binary packages required for basic Windows development, including gdb. It's widely used without any unusual problems.

link|flag

Your Answer

Get an OpenID
or

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