Linux From Scratch(LFS11.0)交叉编译临时工具 - Ncurses-6.2
Posted Lucifer三思而后行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux From Scratch(LFS11.0)交叉编译临时工具 - Ncurses-6.2相关的知识,希望对你有一定的参考价值。
Ncurses 软件包包含使用时不需考虑终端特性的字符屏幕处理函数库。
安装 Ncurses
解压软件包:
echo $LFS
cd $LFS/sources
tar xf ncurses-6.2.tar.gz
cd ncurses-6.2
首先,保证在配置时优先查找 gawk 命令:
sed -i s/mawk// configure
然后,运行以下命令,在宿主系统构建“tic”程序:
mkdir -v build
pushd build
../configure
make -C include
make -C progs tic
popd
编译并安装 Ncurses:
time { ./configure --prefix=/usr \\
--host=$LFS_TGT \\
--build=$(./config.guess) \\
--mandir=/usr/share/man \\
--with-manpage-format=normal \\
--with-shared \\
--without-debug \\
--without-ada \\
--without-normal \\
--enable-widec && make && make DESTDIR=$LFS TIC_PATH=$(pwd)/build/progs/tic install;}
echo "INPUT(-lncursesw)" > $LFS/usr/lib/libncurses.so
安装完成后清理工作:
cd ..
rm -rf ncurses-6.2
本次分享到此结束啦~
如果觉得文章对你有帮助,点赞、收藏、关注、评论,一键四连支持,你的支持就是我创作最大的动力。
❤️ 技术交流可以 关注公众号:Lucifer三思而后行 ❤️
以上是关于Linux From Scratch(LFS11.0)交叉编译临时工具 - Ncurses-6.2的主要内容,如果未能解决你的问题,请参考以下文章
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)收尾工作