rust 交叉编译树莓派程序
使用 rust 写树莓派程序时,如果直接在树莓派上进行编译,速度非常慢,如果是 zero 那更加是慢到受不了。因此最好是能通过开发机编译完后,直接放到树莓派上运行。
由于开发机上的 cpu 架构、操作系统和目标机不同,开发机通常是 x86 架构,系统可以是 mac、linux、windows,而树莓派则为 armv6 或 armv7 的 linux 系统。未经过特殊处理,默认的编译工具链编译出的程序只适合开发机上运行,为特定目标编译需要一套别的编译工具链,这种方法被称为交叉编译 cross compilation。
要注意,不同版本的树莓派的 cpu 架构不一样,具体可查看
cat /proc/cpuinfo
linux 上进行交叉编译
linux 上需要安装 gcc 的交叉编译工具
sudo apt-get install gcc-arm-linux-gnueabihf
然后通过 rustup 安装不同的目标支持
rustup target add arm-unknown-linux-gnueabihf # armv6
rustup target add armv7-unknown-linux-gnueabihf # armv7
mac 上进行交叉编译
现在已经有开发者把交叉编译工具做个 brew 安装脚本,安装
brew install FiloSottile/musl-cross/musl-cross --without-x86_64 --with-arm-hf
这个交叉编译工具使用的是 musl c 库,跨平台,性能比 glibc 要差一点。
然后通过 rustup 安装不同的目标支持
rustup target add arm-unknown-linux-musleabihf # armv6
rustup target add armv7-unknown-linux-musleabihf # armv7
编译设置
在项目下创建一个 .cargo/config
文件,内容为
[target.arm-unknown-linux-musleabihf]
linker = "arm-linux-musleabihf-ld"
[target.armv7-unknown-linux-musleabihf]
linker = "arm-linux-musleabihf-ld"
[target.arm-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-ld"
[target.armv7-unknown-linux-gnueabihf]
linker = "arm-linux-gnueabihf-ld"
然后用按照不同的开发机、目标机类型,使用 cargo 进行编译
cargo build --target arm-unknown-linux-gnueabihf --release # armv6, linux
cargo build --target armv7-unknown-linux-gnueabihf --release # armv7, linux
cargo build --target arm-unknown-linux-musleabihf --release # armv6, mac
cargo build --target armv7-unknown-linux-musleabihf --release # armv7, mac
编译完后,在 target/<目标类型>/release
中可找到对应的可执行文件,copy 到目标上就可以运行。
这个文件也可使用 strip 工具来删掉一些符号,从而减少整个可执行文件的体积。
原文地址:https://www.cnblogs.com/fengyc/p/12198178.html
时间: 2024-10-03 23:15:28