【运维】Linux 升级 make

更新步骤
1. 下载make最新安装包
#到 http://ftp.gnu.org/pub/gnu/make/ 查找最新安装包

wget http://ftp.gnu.org/pub/gnu/make/make-4.3.tar.gz
1
2
3
2. 解压配置
tar -zxvf make-4.3.tar.gz
cd make-4.3
./configure --prefix=/usr
1
2
3
3. 编译安装
type make
make check
make install
1
2
3
4. 验证安装
make -v

GNU Make 4.3
为 x86_64-pc-linux-gnu 编译
Copyright (C) 1988-2020 Free Software Foundation, Inc.
 

猜你喜欢

转载自blog.csdn.net/G971005287W/article/details/131433921