Remove duplicated note about requiring Rust nightly

This commit is contained in:
Philipp Oppermann
2020-07-17 13:13:13 +02:00
parent e407ec0ee0
commit f0443b7bfe

View File

@@ -286,7 +286,7 @@ After setting the `unstable.build-std` configuration key and installing the `rus
Finished dev [unoptimized + debuginfo] target(s) in 0.29 secs
```
We see that `cargo build` now recompiles the `core`, `rustc-std-workspace-core` (another dependency of `core`), and `compiler_builtin` libraries for our new custom target. Since these libraries use a lot of unstable features internally, this only works with a [nightly Rust compiler].
We see that `cargo build` now recompiles the `core`, `rustc-std-workspace-core` (another dependency of `core`), and `compiler_builtin` libraries for our custom target.
#### The `rlibc` Crate