make[2]: Entering directory '/root/glibc-2.28/stdio-common
所以安装 make 4.2 的版本即可
1 2 3 4 5 6 7 8 9 10 11
wget http://ftp.gnu.org/pub/gnu/make/make-4.2.tar.gz tar -xzvf make-4.2.tar.gz cd make-4.2/ mkdir build && cd build ../configure --prefix=/usr/ make make install # 删除旧的 make rm /usr/bin/make # 拷贝新的 cp make /usr/bin/
升级glibc
1 2 3 4 5 6 7 8
wget https://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz tar -xzvf glibc-2.28.tar.gz cd glibc-2.28 #创建编译临时目录 mkdir build && cd build ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin make make install