码迷,mamicode.com
首页 > 其他好文 > 详细

手动安装m4, autoconf, automake, libtool

时间:2018-08-08 14:56:39      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:lib   get   手动安装   ofo   .gz   wget   ref   make   Fix   

安装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

标签:lib   get   手动安装   ofo   .gz   wget   ref   make   Fix   

原文地址:https://www.cnblogs.com/redhat0019/p/9442389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!