码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu14.04默认cmake升级为3.x

时间:2018-02-21 23:34:31      阅读:555      评论:0      收藏:0      [点我收藏+]

标签:mon   ade   需要   post   生成   common   ubunt   4.0   3.4   

由于Ubuntu14.04的cmake版本为2.8.x,而如果需要cmake3.x版本时,无法生成makefile,有两种方法可以安装cmake3.4.1:

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:george-edison55/cmake-3.x
sudo apt-get update
sudo apt-get install cmake
sudo apt-get upgrade
方法2:
sudo apt-get install build-essential
wget http://www.cmake.org/files/v3.4/cmake-3.4.1.tar.gz
tar xf cmake-3.4.1.tar.gz
cd cmake-3.4.1
./configure
make
sudo apt-get install checkinstall
sudo checkinstall
sudo make install

最后在终端输入:cmake --version

如果显示cmake version 3.4.1

则安装成功!

Ubuntu14.04默认cmake升级为3.x

标签:mon   ade   需要   post   生成   common   ubunt   4.0   3.4   

原文地址:https://www.cnblogs.com/lizhongpingchn/p/7867103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!