Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i use the latest C++ 11 features in clang? What (sub)set of features is supported?

share|improve this question
3  
I added the c++11 tag here, this question seems likely to generate enough interest in the future that having the extra visibility to C++11 experts up front seems worth it to me -- but if you guys wish to restrict the tag to strictly language issues, please feel free to remove it -- and I'd be curious in knowing about it. Thanks :) – sarnold May 2 '12 at 6:40

2 Answers

up vote 14 down vote accepted

You will need clang 3.2 to use the most relevant feature set from C++ 11. Read http://clang.llvm.org/cxx_status.html for the complete list of up-to-date supported features. Clang 3.2 still lacks some of the concurrency features of C++ 11, everything else should be no problem.

Clang's command line is gcc-compatible so you have to enable C++11 support via the followinf command-line switch

-std=c++11
share|improve this answer
2  
Which makes the point that unfortunately this page is not up-to-date... I'll raise this issue on the list :x – Matthieu M. May 2 '12 at 7:02
3  
It is, but there is a problem that makes it not update cache... so just Ctrl+R and you'll get it. – Klaim May 2 '12 at 8:01

Here is the always up to date list of features supported by clang:

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

To activate C++11, you have to add -std=c++11 in your clang calls, like for gcc. If you use an IDE that is clang-aware or gcc-aware, there is a specific project settings option available to do that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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