Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/building/bootstrapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ Compiling `rustc` is done in stages. Here's a diagram, adapted from Joshua Nelso
[talk on bootstrapping][rustconf22-talk] at RustConf 2022, with detailed explanations below.

The `A`, `B`, `C`, and `D` show the ordering of the stages of bootstrapping.
<span style="background-color: lightblue">Blue</span> nodes are downloaded,
<span style="background-color: yellow">yellow</span> nodes are built with the stage0 compiler, and
<span style="background-color: lightgreen">green</span> nodes are built with the stage1 compiler.
<span style="background-color: lightblue; color: black">Blue</span> nodes are downloaded,
<span style="background-color: yellow; color: black">yellow</span> nodes are built with the
stage0 compiler, and
<span style="background-color: lightgreen; color: black">green</span> nodes are built with the
stage1 compiler.

[rustconf22-talk]: https://rustconf.com/schedule#bootstrapping-the-once-and-future-compiler

Expand Down