7

Possible Duplicate:
Compiler support for upcoming C++0x

Looking to use it for a purely experimental purposes. Is there any out there that has full support? Seems VC++ and GCC have very good support, but still incomplete (understandably).

Community
  • 1
  • 1
Silly Kids
  • 189
  • 1
  • 4
  • 2
    This is the same topic as [Compiler support for upcoming C++0x ](http://stackoverflow.com/questions/980573/compiler-support-for-upcoming-c0x), but it may be time for a new question. – Matthew Flaschen Nov 17 '10 at 03:32
  • 1
    @Matthew: While compiler support has gotten significantly better this past year, the highest-upvoted answers to that question all link to Apache's wiki, which is always up-to-date and will probably remain the "best" answer for this question for quite some time. – Travis Gockel Nov 17 '10 at 03:40

2 Answers2

11

GCC.

You can also consult this handy chart.

Travis Gockel
  • 26,877
  • 14
  • 89
  • 116
3

As previously stated by Travis Gockel, GCC is the compiler with best support for C++0x.

The best source to compare the availability of C++0x features by compilers is this chart that is maintained by Scott Meyers: http://www.aristeia.com/C++0x/C++0xFeatureAvailability.htm

Raphael
  • 7,972
  • 14
  • 62
  • 83