Reputation:
Presently I've Debian Squeeze(AMD64 linux), libstdc++5 and libstdc++6 on my computer.
Do these C++ libraries conform to the ISO standard C++11?
Upvotes: 5
Views: 6201
Reputation: 8421
No they don't conform fully, but they have elements :
C++11 support on stdlibc++ (this is for the latest version, not the one you have)
Your best bet is to try libc++ (developed for clang but works with GCC 4.4 as well). You could try downloading and compiling the latest clang or GCC release as well.
Only MS has a fully implemented C++11 library in VC 11 (or so they claim, and yes, that doesn't help you, sorry).
Upvotes: 5