标签搜索

目 录CONTENT

文章目录

cmake的安装

陈铭
2021-08-13 / 0 评论 / 0 点赞 / 129 阅读 / 72 字 / 正在检测是否收录...
# 下载源码
wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1.tar.gz
tar -zxvf cmake-3.21.1.tar.gz && cd cmake-3.21.1
# 三板斧
./bootstrap
gmake
gmake install
# 出现Cannot find appropriate C compiler on this system
yum install -y gcc
# 出现Cannot find appropriate C++ compiler on this system
yum install -y gcc-c++
0

评论区