编译一些软件,对cmake的版本有要求,这里记录一下升级cmake的一些操作
cmake的升级脚本
yum update
yum install wget gcc gcc-c++ cmake make -y
wget https://github.com/Kitware/CMake/releases/download/v3.14.4/cmake-3.14.4.tar.gz
tar -xzf cmake-3.14.4.tar.gz
cd cmake-3.14.4
./configure
gmake -j4
make install
cmake --version
hash -r
# 查看新的版本
cmake version 3.14.4
hash -r 的作用
“CMake Error: Could not find CMAKE_ROOT !!!” 的解决方法(hash -r )