Skip to content

Commit

Permalink
Auto merge of #1886 - camelid:stage2, r=RalfJung
Browse files Browse the repository at this point in the history
Stage 2 seems to be required after all

Reverts most of bb59980.

See the discussion starting at #1340 (comment) for more.
  • Loading branch information
bors committed Sep 6, 2021
2 parents 7a2f1ca + 78c0312 commit b97c340
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ cd rustc
./x.py setup compiler
# Now edit `config.toml` and under `[rust]` set `debug-assertions = true`.

# Build a stage 1 rustc, and build the rustc libraries with that rustc.
# Build a stage 2 rustc, and build the rustc libraries with that rustc.
# This step can take 30 minutes or more.
./x.py build --stage 1 compiler/rustc
./x.py build --stage 2 compiler/rustc
# If you change something, you can get a faster rebuild by doing
./x.py build --keep-stage 0 --stage 1 compiler/rustc
./x.py build --keep-stage 0 --stage 2 compiler/rustc
# You may have to change the architecture in the next command
rustup toolchain link stage1 build/x86_64-unknown-linux-gnu/stage1
rustup toolchain link stage2 build/x86_64-unknown-linux-gnu/stage2
# Now cd to your Miri directory, then configure rustup
rustup override set stage1
rustup override set stage2
```

For more information about building and configuring a local compiler,
Expand Down

0 comments on commit b97c340

Please sign in to comment.