@@ -22,6 +22,13 @@ Note that this documentation mostly covers user-facing information. See
22
22
23
23
## Stages of bootstrapping
24
24
25
+ ### Overview
26
+
27
+ - Stage 0: the pre-compiled compiler
28
+ - Stage 1: from current code, by an earlier compiler
29
+ - Stage 2: the truly current compiler
30
+ - Stage 3: the same-result test
31
+
25
32
Compiling ` rustc ` is done in stages. Here's a diagram, adapted from Joshua Nelson's
26
33
[ talk on bootstrapping] [ rustconf22-talk ] at RustConf 2022, with detailed explanations below.
27
34
@@ -51,7 +58,7 @@ graph TD
51
58
classDef with-s1c fill: lightgreen;
52
59
```
53
60
54
- ### Stage 0
61
+ ### Stage 0: the pre-compiled compiler
55
62
56
63
The stage0 compiler is usually the current _ beta_ ` rustc ` compiler
57
64
and its associated dynamic libraries,
@@ -65,11 +72,11 @@ a compiler (with its set of dependencies)
65
72
and its 'target' or 'object' libraries (` std ` and ` rustc ` ).
66
73
Both are staged, but in a staggered manner.
67
74
68
- ### Stage 1
75
+ ### Stage 1: from current code, by an earlier compiler
69
76
70
77
The rustc source code is then compiled with the stage0 compiler to produce the stage1 compiler.
71
78
72
- ### Stage 2
79
+ ### Stage 2: the truly current compiler
73
80
74
81
We then rebuild our stage1 compiler with itself to produce the stage2 compiler.
75
82
@@ -92,7 +99,7 @@ For development, you usually only want the `stage1` compiler,
92
99
which you can build with ` ./x.py build library ` .
93
100
See [ Building the compiler] ( ./how-to-build-and-run.html#building-the-compiler ) .
94
101
95
- ### Stage 3
102
+ ### Stage 3: the same-result test
96
103
97
104
Stage 3 is optional. To sanity check our new compiler, we
98
105
can build the libraries with the stage2 compiler. The result ought
0 commit comments