Skip to content

Instantly share code, notes, and snippets.

@Haoxiqiang
Created September 8, 2022 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Haoxiqiang/ed39ee74590e2f0df34d882284b45227 to your computer and use it in GitHub Desktop.
Save Haoxiqiang/ed39ee74590e2f0df34d882284b45227 to your computer and use it in GitHub Desktop.
upgrade_oldest_centos_dev_tools
# These critical programs are missing or too old: compiler
# upgrade make
```bash
#到 http://ftp.gnu.org/pub/gnu/make/ 查找最新安装包
wget http://ftp.gnu.org/pub/gnu/make/make-4.3.tar.gz
tar -zxvf make-4.3.tar.gz
cd make-4.3
./configure --prefix=/usr
type make
make check
make install
make -v
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment