clang c++ 11 support?

closed account (Dy7SLyTq)
so my current compiler of choice is gcc, but it doesnt support the regex library yet. so i have two alternatives. use boost (which i dont feel like building right now) or use another compiler. i already have clang built (thanks lb). so my question is, does clang have full c++11 support like gcc, and have they already made regex for it yet?
There's a nice table here:
http://clang.llvm.org/cxx_status.html

Apparently, clang has all of C++11 implemented, and this random article I found here also claims that clang implements std::regex: http://www.htmlgoodies.com/daily_news/llvm-3.3-announces-full-c11-support.html
Last edited on
closed account (Dy7SLyTq)
thanks all! that is good to know. i might just switch over to llvm. i decided i want to use boost anyways because it makes use of things that i would have to code anyways
Boost supports building with the clang toolset, just fyi ;)
closed account (Dy7SLyTq)
Boost supports building with the clang toolset, just fyi ;)

what does that mean? just that i can build boost using llvm/clang?
When you run b2, you can specify either toolset=gcc or toolset=clang

http://stackoverflow.com/a/13257930/1959975 GCC/MinGW + libstdc++

http://stackoverflow.com/a/8497667/1959975 Clang + libc++
Last edited on
closed account (Dy7SLyTq)
oh... i feel stupid... i havent used boost in forever so i forgot.
Topic archived. No new replies allowed.