C++11 Compiler: Closest to the standard and how close?

后端 未结 6 934
孤城傲影
孤城傲影 2020-12-04 19:03

I\'m interested in learning C++ more thoroughly now that C++11 is apparently ratified. What compiler currently implements the closest thing available to full C++11 support?

相关标签:
6条回答
  • 2020-12-04 19:41

    To anyone reading this now, as of Jan 2013 Clang 3.2 is probably the most complete C++11 compiler, although the latest dev branch of GCC (4.8.x) is going to bring GCC back on par by the looks of it.

    http://clang.llvm.org/cxx_status.html

    Just look at that support table! Epic stuff. That's only accounting for currently available stable versions as well whereas the GCC table contains some 4.8 entries.

    Like I said though, when GCC 4.8 hits stable release, it's going to be tight between the two again:

    http://gcc.gnu.org/projects/cxx0x.html

    0 讨论(0)
  • 2020-12-04 19:45

    There's also GCC C++0x (or C++11) status page : http://gcc.gnu.org/projects/cxx0x.html

    0 讨论(0)
  • 2020-12-04 19:48

    There's a support matrix on the Apache wiki.

    0 讨论(0)
  • 2020-12-04 19:49

    IBM's xlC++ compiler has a basic C++11 feature support page.

    0 讨论(0)
  • 2020-12-04 19:50

    I think the one Scott Meyers maintains on his homepage is pretty good:

    http://www.aristeia.com/C++0x/C++0xFeatureAvailability.htm

    0 讨论(0)
  • 2020-12-04 19:53

    The llvm C++ compiler "clang" has partial C++11 support; you can see its current state at http://clang.llvm.org/cxx_status.html.

    0 讨论(0)
提交回复
热议问题