代码之家  ›  专栏  ›  技术社区  ›  dalton_c

如何为未包含在“生锈目标列表”中的第3层目标构建?

  •  0
  • dalton_c  · 技术社区  · 3 年前

    我想为 aarch64-apple-ios-sim 目标该目标被视为 Tier 3 target 并且在我运行时不会出现在可用目标列表中 rustup target list rustup target add aarch64-apple-ios-sim 很可能它只是一个“隐藏”的目标或什么的,但这并没有起作用。安装tier 3目标的正确方法是什么?

    0 回复  |  直到 3 年前
        1
  •  1
  •   Ivan Sorokin    3 年前

    您可以执行以下操作:

    • 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