本文主要是介绍nss交叉编译,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
下载
下载nspr:https://www.linuxfromscratch.org/blfs/view/svn/general/nspr.html
下载nss:https://www.linuxfromscratch.org/blfs/view/svn/postlfs/nss.html
编译nspr
nspr直接交叉编译make时会报错,原因:交叉编译生成了目标平台的nsinstall,而make要在当前平台执行nsinstall。。。
- 直接编译nspr
./configure --enable-64bit && make
- 保存nsinstall
cp config/nsinstall /tmp/
- 交叉编译nspr
#先配置PATH、CC、AR、RANLIB
make clean
./configure --host=aarch64-linux-gnu
cd config && make && cd ..
rm -f config/nsinstall
mv /tmp/nsinstall .
make -j
这篇关于nss交叉编译的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!