Fix: rustc-std-workpace-core is a dependency of compiler_builtins, not core

This commit is contained in:
Philipp Oppermann
2020-07-17 16:00:17 +02:00
parent f0443b7bfe
commit 3096baf462

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 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 custom target. We see that `cargo build` now recompiles the `core`, `rustc-std-workspace-core` (a dependency of `compiler_builtins`), and `compiler_builtins` libraries for our custom target.
#### The `rlibc` Crate #### The `rlibc` Crate