是什么 ? | : | a tool for automatically generating Makefile.in |
开发语言 | : | Perl |
开发组织 | : | GNU |
官方主页 | : | https://www.gnu.org/software/automake |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
Windows | Chocolatey | choco install -y automake |
macOS | HomeBrew | brew install automake |
GNU/Linux | HomeBrew | brew install automake |
apt | sudo apt-get install -y automake | |
CentOS | yum | sudo yum install -y automake |
dnf | sudo dnf install -y automake | |
openSUSE | zypper | sudo zypper install -y automake |
Alpine Linux | apk | sudo apk add automake |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge automake |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + xz |
编译时 | PerlToolSet、autoconf、gmake |
运行时 | PerlToolSet |
step2、使用curl命令下载automake
源码包 ()
curl -LO https://mirrors.tuna.tsinghua.edu.cn/gnu/automake/automake-1.16.tar.xz
step3、使用tar解压automake
源码包
tar vxf automake-1.16.tar.xz
step4、进入automake-1.16
目录
cd automake-1.16
step5、查看automake-1.16
目录中的内容
step6、创建构建目录,并进入该目录
mkdir build && cd build
step7、使用../configure
配置编译参数
../configure
是一个可执行的POSIX sh脚本,用它 配置后会产生gmake的配置文件Makefile。
../configure
的使用格式如下:
../configure [option]... [VAR=VALUE]...
option | 说明 | |
---|---|---|
--help | -h | 查看../configure 的使用帮助 | |
--version | -V | 查看../configure 是哪个版本的autoconf生成的 | |
--quiet | -q | --silent | 不输出checking... 这些信息 | |
--prefix=DIR | 指定安装目录。默认是/usr/local/ | |
--host=HOST | 设置目标程序运行的CPU平台 一般不需要设置,除非你想要 交叉编译 默认与与宿主机一样 | |
--enable-FEATURE[=yes|no] | yes: 开启FEATURE no : 关闭FEATURE | |
--enable-option-checking[=yes|no] | 是否检查有无不认识的--enable-FEATURE 、--with-PACKAGE 参数 | |
--enable-silent-rules[=yes|no] | yes 相当于make V=0 no 相当于make V=1 |
与enable-FEATURE
对应的选项,还有disable-FEATURE
,disable-FEATURE
相当于enable-FEATURE=no
示例:
../configure --prefix=/usr
step8、使用make命令进行编译、安装
make && sudo make install
注意:
在GNU/Linux中编译的时候,很可能会出现如下的错误:
这句话的意思:在执行help2man命令的时候,没有传入--help
参数, 导致出现了错误。也就是说在执行help2man命令的时候一定要传入--help
参数, 因为这个错误是在执行gmake命令时候出现的,那就说明这个错误是Makefile中出现的, 我们看看Makefile中哪个地方使用了help2man
命令:
只有两个地方调用了help2man命令,其实很容易猜测出来,是第709
行上出问题了,因为从help2man
这个命令的名字就可以猜测出来,这是要把帮助信息写到man文件中, 而第709
行上没有使用--help
参数,只有输出,显然,它并不知道要输出什么, 所以这个命令运行失败了。上面也给我们了解决方法,就是调用help2man的时候加上--no-discard-stderr
参数, 加上这个参数就不会导致失败了。