安装m4
wget http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz \
&& tar -xzvf m4-1.4.13.tar.gz \
&& cd m4-1.4.13 \
&& ./configure –prefix=/usr/local
make && make install
安装autoconf
wget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz \
&& tar -xzvf autoconf-2.65.tar.gz \
&& cd autoconf-2.65 \
&& ./configure –prefix=/usr/local
make && make install
安装automake
wget http://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz \
&& tar xzvf automake-1.11.tar.gz \
&& cd automake-1.11 \
&& ./configure –prefix=/usr/local
make && make install
安装libtool
wget http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz \
&& tar xzvf libtool-2.2.6b.tar.gz \
&& cd libtool-2.2.6b \
&& ./configure –prefix=/usr/local
make && make install
本文详细介绍如何安装m4、autoconf、automake及libtool等构建工具。通过wget下载对应版本的压缩包,使用tar命令解压后进入相应目录,运行./configure指定安装路径为/usr/local,最后执行make和make install完成安装。
762

被折叠的 条评论
为什么被折叠?



