File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8,14 +8,16 @@ These do not need to be run in any particular order.
8
8
# Download crates.io dependencies
9
9
$ buck2 uquery ' kind(crate_download, ...)' | xargs buck2 build
10
10
11
- # Check standard library and rustc using bootstrap compiler in #[cfg(bootstrap)]
12
- $ buck2 build stage1:std[check]
11
+ # Typecheck stage1 compiler using bootstrap compiler with #[cfg(bootstrap)]
13
12
$ buck2 build stage1:rustc[check]
14
13
15
14
# Build and run stage1 compiler
16
15
$ buck2 build stage1:rustc
17
16
$ buck2 run stage1:rustc -- --version --verbose
18
17
18
+ # Typecheck standard library using stage1 compiler
19
+ $ buck2 build stage1:std[check]
20
+
19
21
# Build and run stage2 compiler in #[cfg(not(bootstrap))] using stage1 compiler
20
22
$ buck2 build stage2:rustc
21
23
$ buck2 run stage2:rustc -- --version --verbose
You can’t perform that action at this time.
0 commit comments