Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/building/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ compiler toolchain. You can use it with rustup by linking it.
rustup toolchain link stage1 build/host/stage1
```

**NOTE**: If you use `./x setup tools`, the default stage will be set to 2 instead of 1.
Adjust your command accordingly:
```sh
rustup toolchain link stage2 build/host/stage2
```

Now you have a toolchain called `stage1` linked to your build. You can use it to
test the compiler.

Expand Down
Loading