1. 安装执行三步骤为./bootstrap && make && make install
2. 在./bootstrap的时候会提示以下信息
Error when bootstrapping CMake:
Cannot find appropriate C++ compiler on this system.
Please specify one using environment variable CXX.
这是因为没有安装g++编译器,此时需要安装该编译器,使用命令sudo apt-get install g++ 进行安装;
安装完成后再执行./bootstrap,执行成功信息如下图
往下继续执行make和make install,完成最后安装。
当执行make install的时候会出现
file cannot create directory: /usr/local/doc/cmake-3.8. Maybe need administrative privileges.
我直接采用sudo方式进行安装。
附cmake3.8.1源码包下载