前言
CMake是一个跨平台的安装( 编译 )工具,可以用简单的语句来描述所有平台的
安装 编译过程 。他能够输出各种各样的 makefile 或者 project 文件,能测试 编译器
所支持的 C++ 特性 类似 UNIX 下的 automake 。只是 CMake 的 组态档 取名为
CMakeLists.txt 。 Cmake 并不直接建构出最终的软件,而是产生标准的建构档
(如 Unix 的 Makefile 或 Windows Visual C++ 的 projects/workspaces ),然后
再依一般的建构方式使用。
一、cmake 资源
cmake 源:官方网站
二、环境搭建
1.检查卸载已经安装的旧版的CMake[⾮必需]
代码如下:cmake -version
apt-1 get autoremove cmake
2.资源下载
代码如下(示例):wget https://cmake.org/files/v3.9/cmake-3.22.1-linux-x86_64.tar.gz
解压: tar zxvf cmake-3.22.1-linux-x86_64.tar.gz 查看目录: tree -L 2 cmake-3.22.1-linux-x86_64
3.创建软连接
注: ⽂件路径是可以指定的, ⼀般选择在/opt 或 /usr 路径下, 这⾥选择/opt
mv cmake-3.22.1-Linux-x86_64 /opt/cmake-3.22.1 ln -sf /opt/cmake-3.22.1/bin/* /usr/bin/
4. cmake 安装遇到的问题
问题一
make[1]: *** [CMakeFiles/cmTC_5de61.dir/build.make:99: cmTC_5de61] Error 1 make[1]: Leaving directory '/root/2.4/src-cmake/src-cmake/2.1-1/build/CMakeFiles/CMakeTmp' make: *** [Makefile:127: cmTC_5de61/fast] Error 2
修改方法
sudo apt-get update sudo apt-get upgrade sudo apt-get install libc6-dev
问题二
CMake Error at CMakeLists.txt:5 (PROJECT): No CMAKE_CXX_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH.
修改方法:
sudo apt-get install -y build-essential
总结
提示:这里对文章进行总结: