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

安装 Autoconf, Automake & Libtool

时间:2018-12-20 20:35:00      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:details   color   问题   tool   automake   art   nbsp   install   apt-get   

今天在使用sudo apt-get install命令安装autoconf和automake时,出现了问题,说是不能sudo apt-get install安装这些软件似乎不是最新的。由此,我通过搜索引擎在CSDN中找到了对应的解决方案,虽然该方案有点麻烦,不过最终还是成功安装autoconf和automake。

至于下面的libtool是可以通过sudo apt-get install完成安装的,贴一下主要考虑哪些没有使用ubuntu系统的,编译安装无论是Ubuntu还是CentOS同样适用。

我参考解决这个问题的网址是:https://blog.csdn.net/u012703795/article/details/43233329

curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz 
tar -xzf autoconf-2.69.tar.gz 
cd autoconf-2.69 
./configure && make && sudo make install   


curl -OL http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz 
tar -xzf automake-1.14.tar.gz 
cd automake-1.14 
./configure && make && sudo make install   

curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz 
tar -xzf libtool-2.4.2.tar.gz 
cd libtool-2.4.2 
./configure && make && sudo make install

 

安装 Autoconf, Automake & Libtool

标签:details   color   问题   tool   automake   art   nbsp   install   apt-get   

原文地址:https://www.cnblogs.com/youcong/p/10151753.html

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