安装 Autoconf, Automake & Libtool

Posted youcong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装 Autoconf, Automake & Libtool相关的知识,希望对你有一定的参考价值。

今天在使用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的主要内容,如果未能解决你的问题,请参考以下文章

使用 autoconf/automake,如何指定包含文件路径?

安装 Autoconf, Automake & Libtool

怎样查看autoconf,automake以及libtool是不是安装

C++学习(三四四)./configuremakemake install,autoconf automake

手动安装m4, autoconf, automake, libtool

sh 在OS X El Capitan上安装Autoconf和Automake