@@ -277,18 +277,20 @@ default).
277277Once you have successfully built ` rustc ` , you will have created a bunch
278278of files in your ` build ` directory. In order to actually run the
279279resulting ` rustc ` , we recommend creating rustup toolchains. The first
280- one will run the stage1 compiler (which we built above). The second
281- will execute the stage2 compiler (which we did not build, but which
282- you will likely need to build at some point; for example, if you want
283- to run the entire test suite).
280+ command listed below creates the stage1 toolchain, which was built in the
281+ steps above, with the name ` stage1 ` . The second command creates the stage2
282+ toolchain using the stage1 compiler. This will be needed in the future
283+ if running the entire test suite, but will not be built in this page.
284+ Building stage2 is done with the same ` ./x build ` command as for stage1,
285+ specifying that the stage is 2 instead.
284286
285287``` bash
286288rustup toolchain link stage1 build/host/stage1
287289rustup toolchain link stage2 build/host/stage2
288290```
289291
290- Now you can run the ` rustc ` you built with. If you run with ` -vV ` , you
291- should see a version number ending in ` -dev ` , indicating a build from
292+ Now you can run the ` rustc ` you built with via the toolchain . If you run with
293+ ` -vV ` , you should see a version number ending in ` -dev ` , indicating a build from
292294your local environment:
293295
294296``` bash
0 commit comments