Information: Dieser Artikel ist leider momentan nur auf Englisch verfügbar. Ich werde ihn so bald als möglich auch in Deutsch veröffentlichen.
Recently I wanted to support building of one of my projects (Life++) on Linux. Since this project makes use of some of the features of the fairly new C++11 Standard, I thought I’d use clang and libc++.
Because I really like clang and libc++ I thought it would be cool if i built clang, llvm and libc++ using clang and libc++. Sounds a little strange, doesn’t it? As i learned throughout my adventures, building libc++ also involved another decission to be made. Would i build it using the libsupc++ ABI or the libc++abi ABI. A quick google check made it clear for me, I wanted to have the libc++abi ABI since it was feature complete, modern, and written by the people behind llvm, clang and libc++.
