• Automake第一篇 安装automake等工具


    Ubuntu18.04下安装Automake

    通过sudo apt-get install来安装autoconf、automake、libtool、m4

    sudo apt-get install autoconf

    sudo apt-get install automake

    sudo apt-get install m4

    sudo apt-get install libtool

    Notice:

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

    Reference 

    automake官网

    安装automake+autoconf

    https://www.cnblogs.com/soyo/p/7411622.html

    转载请注明出处!感谢GISPALAB实验室的老师和同学们的帮助和支持~
  • 相关阅读:
    Python学习-第三天代码作业
    网络原理-1
    整理操作系统
    操作系统--开发语言--重点
    操作系统
    C#数组的声明方式
    string.Format对C#字符串格式化(转)
    C#中两个Form窗口之间的传值(父->子)(子->父) (转)
    opencv MatchTemplate()模板匹配寻找最匹配部分
    摄像头,图片筛选颜色
  • 原文地址:https://www.cnblogs.com/uestc-mm/p/15383505.html
Copyright © 2020-2023  润新知