Created
September 8, 2022 11:31
-
-
Save Haoxiqiang/ed39ee74590e2f0df34d882284b45227 to your computer and use it in GitHub Desktop.
upgrade_oldest_centos_dev_tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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