1. 程式人生 > >安裝 Autoconf, Automake & Libtool

安裝 Autoconf, Automake & Libtool

nbsp 出現 csdn 解決 btool apt-get tar.gz clas config

今天在使用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