@@ -23,7 +23,7 @@ Note that this documentation mostly covers user-facing information. See
23
23
24
24
### Overview
25
25
26
- - Stage 0: the pre-compiled compiler
26
+ - Stage 0: the pre-compiled compiler and standard library
27
27
- Stage 1: from current code, by an earlier compiler
28
28
- Stage 2: the truly current compiler
29
29
- Stage 3: the same-result test
@@ -192,7 +192,7 @@ include, but are not limited to:
192
192
artifacts'). If you're working on the standard library, this is normally the
193
193
test command you want.
194
194
- ` ./x build --stage 0 ` means to build with the stage0 ` rustc ` .
195
- - ` ./x doc --stage 0 ` means to document using the stage0 ` rustdoc ` .
195
+ - ` ./x doc --stage 1 ` means to document using the stage0 ` rustdoc ` .
196
196
197
197
#### Examples of what * not* to do
198
198
@@ -211,7 +211,7 @@ include, but are not limited to:
211
211
In short, _ stage 0 uses the ` stage0 ` compiler to create ` stage0 ` artifacts which
212
212
will later be uplifted to be the stage1 compiler_ .
213
213
214
- In each stage, two major steps are performed:
214
+ In each stage besides 0 , two major steps are performed:
215
215
216
216
1 . ` std ` is compiled by the stage N compiler.
217
217
2 . That ` std ` is linked to programs built by the stage N compiler, including the
0 commit comments