本文主要是介绍automake安装1.14.1版本,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
2018年08月16日 10:39:27 吴跟强 阅读数:339更多
个人分类: Linux
版权声明:本文为博主原创学习笔记,如需转载请注明来源: https://blog.csdn.net/wugenqiang/article/details/81737137
1.输入命令:wget http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.gz下载autoconf安装包
2.解压缩automake-1.14.1.tar.gz ,输入命令:tar -zxvf automake-1.14.1.tar.gz -C /opt/
3.进入解压缩后的目录automake-1.14.1,输入命令:cd /opt/automake-1.14.1
4.输入命令:./bootstrap.sh
5.配置编译环境,输入命令:./configure
6.编译并安装automake,输入俩命令:make ; make install
7.检查是否安装成功,输入命令:automake --version
automake (GNU automake) 1.14
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl-2.0.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.Written by Tom Tromey <tromey@redhat.com>and Alexandre Duret-Lutz <adl@gnu.org>.
这篇关于automake安装1.14.1版本的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!