linux中,会有几个常用的工具:
-
m4
-
autoconf
-
automake
-
libtool
下面介绍下,如何在linux中,源码安装这些工具。
一、安装m4-1.4.18
m4源代码地址:http://mirrors.kernel.org/gnu/m4/
目前,最新版本1.4.18。
安装命令
wget http://mirrors.kernel.org/gnu/m4/m4-1.4.18.tar.gz && tar -xzvf m4-1.4.18.tar.gz cd m4-1.4.18 ./configure --prefix=/home/share/tools/usr make make install
二、安装autoconf-2.69
m4源代码地址:http://mirrors.kernel.org/gnu/autoconf/
目前,最新版本2.69。
安装命令
wget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.69.tar.gz && tar -xzvf autoconf-2.69.tar.gz cd autoconf-2.69 ./configure --prefix=/home/share/tools/usr make make install
三、安装automake-1.16
m4源代码地址:http://mirrors.kernel.org/gnu/automake/
目前,最新版本1.16。
安装命令
wget http://mirrors.kernel.org/gnu/automake/automake-1.16.tar.gz && tar -xzvf automake-1.16.tar.gz cd automake-1.16 ./configure --prefix=/home/share/tools/usr make make install
四、安装libtool-2.4.6
m4源代码地址:http://mirrors.kernel.org/gnu/libtool/
目前,最新版本2.4.6。
安装命令
wget http://mirrors.kernel.org/gnu/libtool/libtool-2.4.6.tar.gz && tar -xzvf libtool-2.4.6.tar.gz cd libtool-2.4.6 ./configure --prefix=/home/share/tools/usr make make install