Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我意识到之前有人问过这个问题,答案是使用-Zwith 选项rustc,但这仅适用于 Rust 1.31 的夜间构建。
-Z
rustc
使用稳定版本时有其他选择吗?
不,那里没有。这仅适用于夜间 Rust。
然而,当使用 rustup 时,没有理由不同时安装 stable 和 nightly Rust。然后你可以做rustc +nightly -Z ...,继续用 stable 编译你的代码。
rustc +nightly -Z ...
也可以看看: