File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ Arguments:
261
261
262
262
./x.py build --stage 1 src/libtest
263
263
264
- This will first build everything once (like --stage 0 without further
264
+ This will first build everything once (like ` --stage 0` without further
265
265
arguments would), and then use the compiler built in stage 0 to build
266
266
src/libtest and its dependencies.
267
267
Once this is done, build/$ARCH/stage1 contains a usable compiler." ,
@@ -293,10 +293,14 @@ Arguments:
293
293
294
294
./x.py test src/test/run-pass
295
295
./x.py test src/libstd --test-args hash_map
296
- ./x.py test src/libstd --stage 0
296
+ ./x.py test src/libstd --stage 0 --no-doc
297
297
./x.py test src/test/ui --bless
298
298
./x.py test src/test/ui --compare-mode nll
299
299
300
+ Note that `test src/test/* --stage N` does NOT depend on `build src/rustc --stage N`;
301
+ just like `build src/libstd --stage N` it tests the compiler produced by the previous
302
+ stage.
303
+
300
304
If no arguments are passed then the complete artifacts for that stage are
301
305
compiled and tested.
302
306
You can’t perform that action at this time.
0 commit comments