使用交叉编译工具为龙芯编译Boost1.81

12 篇文章 0 订阅
下载Boost源码并解压,然后创建配置文件user-config.jam设定交叉编译工具路径。使用bootstrap.sh脚本配置Boost,并用b2工具进行静态链接的编译和安装,包括多个特定库如chrono,json等。
摘要由CSDN通过智能技术生成

下载交叉编译工具:

wget https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.bz2
tar jxvf ./boost_1_81_0.tar.bz2

 将交叉编译工具目录移动到合适的位置。

创建Boost配置文件设置交叉编译工具:

vim /root/user-cofig.jam

因为后面要用sudo ./b2 install ......,所以这个文件必须创建在root主目录,我就是创建在当前用户主目录,浪费了大量时间找问题,并且这个坑踩了两次。

using gcc : loongarch : /opt/loongarch64-gcc-8.3.0/bin/loongarch64-linux-gnu-g++ ;

注意其中6个空格一个都不能少,上面的g++文件名和路径换成自己的。

生成b2工具:

tar jxvf ./boost_1_81_0.tar.bz2
cd boost_1_81_0
./bootstrap.sh --prefix=/opt/loongarch64

编译和安装所需的库:

sudo ./b2 install toolset=gcc-loongarch architecture=loongarch binary-format=elf link=static --with-chrono --with-json --with-filesystem --with-context --with-coroutine --with-program_options --with-date_time --with-atomic --with-container --with-locale --with-serialization --with-url --with-stacktrace --with-system

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值