$ wget https://ftp.gnu.org/gnu/make/make-4.3.tar.gz $ tar -xzvf make-4.3.tar.gz $ cd make-4.3/
$ ./configure --prefix=/usr/local/make $ make $ make install
$ cd /usr/bin/ $ mv make make.bak $ ln -sv /usr/local/make/bin/make /usr/bin/make
继续编译 glibc
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
$ cd /root/glibc-2.28/build $ ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin $ make $ make install
$ wget https://ftp.gnu.org/gnu/make/make-4.3.tar.gz $ tar -xzvf make-4.3.tar.gz $ cd make-4.3/
$ ./configure --prefix=/usr/local/make $ make $ make install
$ cd /usr/bin/ $ mv make make.bak $ ln -sv /usr/local/make/bin/make /usr/bin/make
继续编译 glibc
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
$ cd /root/glibc-2.28/build $ ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin $ make $ make install