我想为aarch64-apple-ios-sim
目标构建我的 Rust 库。这个目标被认为是第 3 层目标rustup target list
,当我在最新的稳定或夜间工具链上运行时,它不会出现在我的可用目标列表中。我曾尝试rustup target add aarch64-apple-ios-sim
在它只是一个“隐藏”目标或其他东西的情况下运行,但这没有用。安装第 3 层目标的正确方法是什么?
问问题
429 次
1 回答
1
您可以执行以下操作:
rustup +nightly component add rust-src
cargo +nightly build -Z build-std --target aarch64-apple-ios-sim
在这里您可以找到更多信息:https ://doc.rust-lang.org/nightly/rustc/platform-support/aarch64-apple-ios-sim.html#building-rust-programs
于 2021-06-01T10:34:53.563 回答