我想使用系统包管理器而不是下载 rustup 安装程序来组合一个 Rust 工具链,并为 Raspberry Pi 3 交叉编译
为此,我在 Ubuntu 20.04 中安装rustc
了gcc-arm-linux-gnueabihf
.
但是,该cargo build --bins --release --target armv7-unknown-linux-gnueabihf
命令失败
error[E0463]: can't find crate for `core`
|
= note: the `armv7-unknown-linux-gnueabihf` target may not be installed
有没有办法让这个工作,除了curl https://sh.rustup.rs -sSf | sh && rustup target add arm-unknown-linux-gnueabihf
?