vote up 0 vote down star

Which is the best compiler for c++? For that I’m interested into two criteria:

  1. Which one is more closed to the spec?
  2. Which one gives messages that are more readable and UNDERSTANDABLE for the same error or warning?
flag

stackoverflow.com/questions/397377/… – adamantium Aug 28 at 4:58
@phoenix, I think the two specific criteria differentiate it from that other one (and protect it from S&A closure, IMNSHO). That is, assuming you meant that link as a dupe. If you just meant it as a link to help, ignore these ramblings. – paxdiablo Aug 28 at 5:01
It was only for a reference and not a dup. – adamantium Aug 28 at 5:02
No probs, my apologies. – paxdiablo Aug 28 at 5:17
3  
This is highly subjective. It's very hard to give a quantitative measure of how closely a particular compiler implements the spec (C++03, to say nothing of C++98 or C++0x). Many compilers also have an option for switching between standards mode and extensions mode. The readability/understandability of errors/warnings is definitely very subjective. – Adam Rosenfield Aug 28 at 5:24

closed as subjective and argumentative by Adam Rosenfield, Kirill V. Lyadvinsky, Neil Butterworth, Jeff Atwood Aug 28 at 9:01

7 Answers

vote up 1 vote down check

Both Microsoft's (MSVC) and Gnu's (GCC) compilers are pretty good or at least adequate.

If you don't understand an error or warning, you can Google it.

link|flag
Just have meat to an opinion that MSVC-is the most closed to the spec compiler, is this right? – Narek Aug 28 at 5:09
naghekyan, I think you mean close to the spec, although MSVC is certainly closed :-) – paxdiablo Aug 28 at 5:16
No, it isn't right. For example, MSVC implements exception specifications (throw() on functions) in a way that is entirely different from the spec. – Pavel Minaev Aug 28 at 5:19
Of course it is close to the spec. but the question is whether MSVC is the closest? :) – Narek Aug 28 at 5:20
@naghekyan - MSVC is close to the spec, and is 'close enough' for most people. Many years ago it was further from the spec than it is now (it had some trouble with templates, for example), but then so did other compilers, and it is better now. – ChrisW Aug 28 at 5:39
vote up 3 vote down

GCC

link|flag
Is this your subjective opinion or you have some facts? – Narek Aug 28 at 4:58
2  
A question like MSVS2008 or GCC is ALWAYS going to be confused with the fundamental religious question: Which OS? – pavium Aug 28 at 5:38
In terms of portability, GCC will almost always win. I bet good money that if you write a C++ program for GCC, it will compile the same on a million other platforms you've never heard of. Not literally (more like only a dozen other platforms, and my money's not so good right now), but if portability is a concern, GCC is untouchable. If portability is secondary to other concerns, GCC still has a good shot at it, but you'll have to weigh your options. – Chris Lutz Aug 28 at 5:50
why I like GCC: liranuna.com/sse-intrinsics-optimizations-in-popu… – LiraNuna Aug 28 at 6:55
1  
It might compile with GCC, but there's no guarantee it'll run. Different platforms will still cause different UB bugs to surface. And of course different platforms have different libraries available. So portability isn't quite that simple. It's not that hard to write C++ code which compiles under multiple compilers anyway. – jalf Aug 28 at 8:38
show 1 more comment
vote up 3 vote down

The compiler that is closest to ISO C++ is Comeau C++ - I don't have any specific references to back this assertion, but it seems to be acknowledged as the way things are by most C++ programmers that I've met.

link|flag
vote up 9 vote down

If you're looking for a C++ compiler that accurately implements the spec, you may want to look into the Comeau C++ compiler.

link|flag
3  
Mein Gott! That web site looks like it was designed by the "Earn $2500 per week from home, guaranteed" crowd. They need to get themselves some serious graphic design talent. – paxdiablo Aug 28 at 5:26
I'm pretty sure the website is done by Greg Comeau himself (probably in vi). Just wait 'til you try to submit an order... – Michael Burr Aug 28 at 5:53
vote up 2 vote down

in my opinion, GCC. Visual Studio is very good as well (and the .Net framework is no doubt useful) but only if you don't need portability to anything but Windows.

As for error messages, here's an explanation of lots of the GCC messages. They're not necessarily easy to understand at first glance, but with a bit of getting used to it's not hard to tell what's going on. Compiler warnings have to have a lot of detail packedintoa short amount of space to be specific about the error and not take up 23872347690239GB of space just to display. For an (extreme) example, it wouldn't be helpful if they looked like this:

Error: line 46
Error: line 48
Error: line 57
Error: line 82

etc.

http://www.ezunix.org/index.php?title=GCC_warnings_explained

link|flag
vote up 1 vote down

Intel C++ Compiler is the best at optimization for Intel's processors

link|flag
1  
And yet, funnily enough, optimization wasn't one of the criteria listed :-) – paxdiablo Aug 28 at 5:24
OOPS, I've inattentively read the question :-) However, in my humble opinion, error messages in ICC are also better than in MSVC – Vanya Aug 28 at 5:40
can you post some sample errors for comparison? One of the other answers did that for MSVC, GCC and Comeau, which was really helpful. – jalf Aug 28 at 8:40
vote up 6 vote down

Comeau is generally considered to be among the most standards conforming compiler, but I'm not sure how to quantify it except that it support the export keyword which is something I've never used (and am likely not to). However, Comeau isn't for the faint of heart in setup and configuration (nor is the Comeau website).

As far as error messages go, errors involving templates are usually among the most difficult to decipher - here's how a few compilers handle the example code from the C++ FAQ entry about the problem (http://www.parashift.com/c++-faq-lite/templates.html#faq-35.17). It looks to me that Comeau comes out on top (though to be fair, I'm using a older version of GCC - I'm not sure how much 4.x would improve it's error messages - maybe someone could post that result). All three of these compilers seem to generate much more understandable messages than I recall from a number of years ago. For fun take a look at the errors generated by VC6 at the end of the post.

Example Code

#include <map>
#include <algorithm>
#include <cmath>

const int values[] = { 1,2,3,4,5 };
const int NVALS = sizeof values / sizeof (int);

int main()
{
    using namespace std;

    typedef map<int, double> valmap;

    valmap m;

    for (int i = 0; i < NVALS; i++)
        m.insert(make_pair(values[i], pow(values[i], .5)));

    valmap::iterator it = 100;              // error
    valmap::iterator it2(100);              // error
    m.insert(1,2);                          // error

    return 0;
}

VC9 result

Setting environment for using Microsoft Visual Studio 2008 x86 tools.
Visual C/C++ 2008 (VC 9.0) Compile...
"C:\Program Files\Microsoft Visual Studio 9.0\VC\bin\cl.exe" /Zi /EHsc -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp" /link /incremental:no kernel32.lib user32.lib advapi32.lib shlwapi.lib oleaut32.lib
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.21022.08 for 80x86
Copyright (C) Microsoft Corporation.  All rights reserved.

test.cpp
C:\temp\test.cpp(19) : error C2440: 'initializing' : cannot convert from 'int' to 'std::_Tree<_Traits>::iterator'
        with
        [
            _Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
        ]
        No constructor could take the source type, or constructor overload resolution was ambiguous
C:\temp\test.cpp(20) : error C2664: 'std::_Tree<_Traits>::iterator::iterator(const std::_Tree<_Traits>::iterator &)' : cannot convert parameter 1 from 'int' to 'const std::_Tree<_Traits>::iterator &'
        with
        [
            _Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
        ]
        Reason: cannot convert from 'int' to 'const std::_Tree<_Traits>::iterator'
        with
        [
            _Traits=std::_Tmap_traits<int,double,std::less<int>,std::allocator<std::pair<const int,double>>,false>
        ]
        No constructor could take the source type, or constructor overload resolution was ambiguous

GCC 3.4.5 result

GCC/MinGW C/C++ Compile...
GCC Version 3.4.5
"C:\MinGW\bin\g++" -Wall -IC:\DevTrees\includes -IC:\DevTrees\Boost\boost_1_34_1 -Ic:\MinGW\include -Ic:\MinGW\include\c++\3.4.5 -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp"  -lkernel32 -luser32 -ladvapi32 -lshlwapi -loleaut32 -o "test".exe
C:\temp\test.cpp: In function `int main()':
C:\temp\test.cpp:19: error: invalid conversion from `int' to `std::_Rb_tree_node<std::pair<const int, double> >*'
C:\temp\test.cpp:19: error:   initializing argument 1 of `std::_Rb_tree_iterator<_Tp>::_Rb_tree_iterator(std::_Rb_tree_node<_Tp>*) [with _Tp = std::pair<const int, double>]'
C:\temp\test.cpp:20: error: invalid conversion from `int' to `std::_Rb_tree_node<std::pair<const int, double> >*'
C:\temp\test.cpp:20: error:   initializing argument 1 of `std::_Rb_tree_iterator<_Tp>::_Rb_tree_iterator(std::_Rb_tree_node<_Tp>*) [with _Tp = std::pair<const int, double>]'
c:/MinGW/include/c++/3.4.5/bits/stl_tree.h: In member function `void std::_Rb_tree<_Key, _Val, _KeyOfValue, _Compare, _Alloc>::insert_unique(_II, _II) [with _InputIterator = int, _Key = int, _Val = std::pair<const int, double>, _KeyOfValue = std::_Select1st<std::pair<const int, double> >, _Compare = std::less<int>, _Alloc = std::allocator<std::pair<const int, double> >]':
c:/MinGW/include/c++/3.4.5/bits/stl_map.h:397:   instantiated from `void std::map<_Key, _Tp, _Compare, _Alloc>::insert(_InputIterator, _InputIterator) [with _InputIterator = int, _Key = int, _Tp = double, _Compare = std::less<int>, _Alloc = std::allocator<std::pair<const int, double> >]'
C:\temp\test.cpp:21:   instantiated from here
c:/MinGW/include/c++/3.4.5/bits/stl_tree.h:996: error: invalid type argument of `unary *'

Comeau result

compile...
como   -c --c++ -IC:\DevTrees\includes -IC:\DevTrees\Boost\boost_1_34_1 "C:\temp\test.cpp"
Comeau C/C++ 4.3.10.1 (Jun  1 2008 09:39:56) for MS_WINDOWS_x86_Beta2
Copyright 1988-2008 Comeau Computing.  All rights reserved.
MODE:non-strict warnings microsoft C++ noC++0x_extensions

"C:\temp\test.cpp", line 19: error: no suitable constructor exists to convert
          from "int" to "std::_Rb_tree_iterator<std::pair<const int, double>,
          std::pair<const int, double> &, std::pair<const int, double> *>"
       valmap::iterator it = 100;              // error
                             ^

"C:\temp\test.cpp", line 20: error: no instance of constructor
          "std::_Rb_tree_iterator<_Value, _Ref, _Ptr>::_Rb_tree_iterator [with
          _Value=std::pair<const int, double>, _Ref=std::pair<const int,
          double> &, _Ptr=std::pair<const int, double> *]" matches the
          argument list
            argument types are: (int)
       valmap::iterator it2(100);              // error
                            ^

2 errors detected in the compilation of "C:\temp\test.cpp".

VC6 result

Setting environment for using Microsoft Visual C++ tools.
Visual C/C++ 6 (VC98) Compile...
"C:\Program Files\Microsoft Visual Studio\VC98\Bin\cl" /GX /Zi -D_WIN32_WINNT=0x0500 "C:\temp\test.cpp" /link /INCREMENTAL:NO kernel32.lib user32.lib advapi32.lib shlwapi.lib oleaut32.lib
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.

test.cpp
C:\temp\test.cpp(19) : error C2440: 'initializing' : cannot convert from 'const int' to 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator'
        No constructor could take the source type, or constructor overload resolution was ambiguous
C:\temp\test.cpp(20) : error C2664: '__thiscall std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator::std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator(struct std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::_Node *)' : cannot convert parameter 1 from 'const int' to 'struct std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::_Node *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
C:\temp\test.cpp(21) : error C2664: 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator __thiscall std::map<int,double,struct std::less<int>,class std::allocator<double> >::insert(class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator,const struct std::pair<int const ,double> &)' : cannot convert parameter 1 from 'const int' to 'class std::_Tree<int,struct std::pair<int const ,double>,struct std::map<int,double,struct std::less<int>,class std::allocator<double> >::_Kfn,struct std::less<int>,class std::allocator<double> >::iterator'
        No constructor could take the source type, or constructor overload resolution was ambiguous
link|flag
VC6 is just ridiculous. I feel sorry for anyone who had to work with that kind of compiler. – Chris Lutz Aug 28 at 6:26
I think Comeau wins on error message clarity as well. :) – jalf Aug 28 at 8:36

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