Abruzzo Forte e Gentile
Abruzzo Forte e Gentile

Reputation: 14879

about clang++ requirements for C++11

I would like to build some code in new C++11. Our machine allows only g++4.4.7 that is old for that. We have available also clang++ 3.4 that as far as I understood supports the new features.

While I am doing first tests with clang++ it looks like it does requires c++ header files from g++. Having available version g++4.4 this will prevent my code to use the new C++11.

Is it really so? Is there a way where I can use clang++3.4 to build C++11 code without having latest versions of g++ ?

Upvotes: 0

Views: 86

Answers (1)

smg628
smg628

Reputation: 179

Try libc++, on linux should work just fine http://libcxx.llvm.org/

Upvotes: 1

Related Questions