Linux From Scratch(LFS11.0)构建 LFS 系统 - Automake-1.16.4

Posted Lucifer三思而后行

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux From Scratch(LFS11.0)构建 LFS 系统 - Automake-1.16.4相关的知识,希望对你有一定的参考价值。

Automake 软件包包含自动生成 Makefile,以便和 Autoconf 一同使用的程序。

安装 Automake

解压软件包:

cd /sources
tar xf automake-1.16.4.tar.xz
cd automake-1.16.4

准备编译 Automake:

./configure --prefix=/usr --docdir=/usr/share/doc/automake-1.16.4

编译该软件包:

make

由于单个测试点中存在的内部时延,即使仅有一个处理器,也应该使用 make 命令的 -j4 选项加速测试。输入以下命令测试编译结果:

make -j4 check


安装该软件包:

make install

安装完成后清理工作:

cd ..
rm -rf automake-1.16.4

本次分享到此结束啦~

如果觉得文章对你有帮助,点赞、收藏、关注、评论,一键四连支持,你的支持就是我创作最大的动力。

❤️ 技术交流可以 关注公众号:Lucifer三思而后行 ❤️

以上是关于Linux From Scratch(LFS11.0)构建 LFS 系统 - Automake-1.16.4的主要内容,如果未能解决你的问题,请参考以下文章

Linux From Scratch(LFS11.0)构建 LFS 系统 - 清理系统

Linux From Scratch(LFS11.0)构建 LFS 系统 - GCC-11.2.0

Linux From Scratch(LFS11.0)收尾工作

Linux From Scratch(LFS11.0)收尾工作

Linux From Scratch(LFS11.0)构建 LFS 系统 - Diffutils-3.8

Linux From Scratch(LFS11.0)构建 LFS 系统 - Inetutils-2.1