红联Linux门户
Linux帮助

更改make版本

发布时间:2016-01-29 15:43:27来源:linux网站作者:Await

安装完ubuntu15.04系统后编译android 4.4系统,用的make版本是3.81。


但ubuntu15.04默认安装的是4.0的,如下:
make -v
GNU Make 4.0


手动下载:make-3.81.tar.gz
http://ftp.gnu.org/pub/gnu/make/make-3.81.tar.gz
解压:sudo tar zxvf make-3.81.tar.gz -C /tmp
注意 在root用户操作
root用户登录:su root (sudo passwd root 设置root用户密码)
cd进入make-3.81目录

./configure --prefix=/usr 指定目录要不然安装完后就是在usr/local/bin/make 这样就不是在/usr/bin/make 存在2个make
type make
make check
make install
这样3.81的make就安装在了/usr/bin/make


make -v

GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.


本文永久更新地址:http://www.linuxdiyf.com/linux/17770.html