首页 > 其他 > 详细

CentOS 7 源码安装 CMake 3.16.2 最新稳定版。解决 cmake: command not found 问题

时间:2020-09-27 11:34:12      阅读:198      评论:0      收藏:0      [点我收藏+]

CentOS 7 源码安装 CMake 3.16.2 最新稳定版。解决 cmake: command not found 问题。

1、准备编译环境

yum -y install gcc gcc-c++ openssl openssl-devel tar

2、获取源码,并解压

wget https://github.com/Kitware/CMake/releases/download/v3.16.2/cmake-3.16.2.tar.gz
tar -zxf cmake-3.16.2.tar.gz
cd cmake-3.16.2

3、编译安装

./bootstrap --prefix=/usr --datadir=share/cmake --docdir=doc/cmake && make
sudo make install

4、检查是否正确安装

cmake --version
cmake version 3.16.2

CMake suite maintained and supported by Kitware (kitware.com/cmake).

CentOS 7 源码安装 CMake 3.16.2 最新稳定版。解决 cmake: command not found 问题

原文:https://www.cnblogs.com/codeRhythm/p/13737919.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!