How can i use the latest C++ 11 features in clang? What (sub)set of features is supported?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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
|
|||||||||
|
|
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. |
||||
|
|