标签:gnu 工具 hub 参数 版本 yum srp too baidu
找到编译llvm的要求:
其他都好弄, 主要是gcc, 不想折腾GCC的升级可以使用scl
yum install centos-release-scl
yum install devtoolset-7
# 使用工具集使用高版本的gcc 进入新的bash
# 如果想下次登录还有效可以在.bashrc 加上source scl_source enable devtoolset-7
scl enable devtoolset-7 bash
git clone https://github.com/llvm/llvm-project.git
cd llvm-project
mkdir build
cd build
# 更多编译参数含义参见官网
cmake -DLLVM_ENABLE_PROJECTS=clang -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ../llvm
make -j4
https://pan.baidu.com/s/1mcgQUCVH8GFgjtR1SRpJgw
centos7编译安装clang8(同时还会编译llvm的不少东西, 文中附带编译好的二进制压缩包)
标签:gnu 工具 hub 参数 版本 yum srp too baidu
原文地址:https://www.cnblogs.com/Me1onRind/p/12110508.html