公式サイト: https://clang.llvm.org/
インストール
実行
libc++
https://libcxx.llvm.org
sudo apt install libc++-dev
std::cout << "libstdc++" << std::endl;
#elif defined(_LIBCPP_VERSION)
std::cout << "libc++" << std::endl;
std::cout << "Other C++ standard library" << std::endl;
clang++ -stdlib=libc++ main.cpp && ./a.out