Reputation: 5057
I have a question concerning the LLVM compiler:
I would like to use it to compile my Objective-C source code for Mac and iOS and from their release notes it seems that LLVM is stable enough for using this.
Having made good experiences with the LLVM I would also like to use it to compile C++ or Objective-C++. However it is not clear to me if I should still use the hybrid LLVM-GCC compiler (the GCC parser and the LLVM code generator) or the pure LLVM compiler.
I am also unsure about the new C++ standard library and if I should use it and how I would make the transition from GNU's libstdc++.
Any comments and hints are appreciated.
Upvotes: 3
Views: 1594
Reputation: 10843
Remember, all this stuff is changing, so benchmarks gets easily outdated.
I've found following report interesting, not only as a kind of benchmark, but it seems showing some LLVM vs GCC compiler differences : Clang/LLVM Maturity Evaluation Report by Dominic Fandrey
Upvotes: 0
Reputation: 9324
Several questions asked here, I'll try to answer all of them.
Upvotes: 7