This commit is contained in:
Téo Bouvard 2022-02-24 20:27:21 +01:00 committed by GitHub
parent e798dc49d7
commit 9e2cdee5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ Stage N `std` is pretty much necessary for any useful work with the stage N comp
Without it, you can only compile programs with `#![no_core]` -- not terribly useful!
The reason these need to be different is because they aren't necessarily ABI-compatible:
there could be a new layout optimizations, changes to MIR, or other changes
there could be new layout optimizations, changes to MIR, or other changes
to Rust metadata on nightly that aren't present in beta.
This is also where `--keep-stage 1 library/std` comes into play. Since most