コンテンツにスキップ

UbuntuにClangをインストール

公式サイト: https://clang.llvm.org/

インストール

実行

libc++

https://libcxx.llvm.org

Terminal window
sudo apt update
sudo apt install libc++-dev
main.cpp
1
#include <iostream>
2
3
int main() {
4
#ifdef __GLIBCXX__
5
std::cout << "libstdc++" << std::endl;
6
#elif defined(_LIBCPP_VERSION)
7
std::cout << "libc++" << std::endl;
8
#else
9
std::cout << "Other C++ standard library" << std::endl;
10
#endif
11
return 0;
12
}
Terminal window
clang++ -stdlib=libc++ main.cpp && ./a.out
実行結果
libc++