注意:版本根据自己需要,或者依赖要求进行更改,建议先在对应网站找到对应版本文件,在修改链接
安装m4
wget http://mirrors.kernel.org/gnu/m4/m4-1.4.19.tar.gz && tar -xzvf m4-1.4.19.tar.gz
cd m4-1.4.19
./configure
make -j4
sudo make install
安装autoconf
wget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.71.tar.gz && tar -xzvf autoconf-2.71.tar.gz
cd autoconf-2.71
./configure
make -j4
sudo make install
automake
wget http://mirrors.kernel.org/gnu/automake/automake-1.16.tar.gz && tar -xzvf automake-1.16.tar.gz
cd automake-1.16
./configure
make -j4
sudo make install
libtools
wget http://mirrors.kernel.org/gnu/libtool/libtool-2.4.7.tar.gz && tar -xzvf libtool-2.4.7.tar.gz
cd libtool-2.4.7
./configure
make -j4
sudo make install