Skip to content

Commit

Permalink
Rollup merge of rust-lang#45374 - topecongiro:remove-enable-rustbuild…
Browse files Browse the repository at this point in the history
…-config-option, r=Mark-Simulacrum

Remove --enable-rustbuild config option from an example

`--enable-rustbuild` is no longer recognized by the configure script. Also I think we should use `./configure` and `./x.py` instead of `configure` and `../x.py`.
  • Loading branch information
kennytm committed Oct 19, 2017
2 parents 342e01b + e11abd1 commit 3de1f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ configure your directory to use this build, like so:
# configure to use local rust instead of downloading a beta.
# `--local-rust-root` is optional here. If elided, we will
# use whatever rustc we find on your PATH.
> configure --enable-rustbuild --local-rust-root=~/.cargo/ --enable-local-rebuild
> ./configure --local-rust-root=~/.cargo/ --enable-local-rebuild
```

After that, you can use the `--incremental` flag to actually do
incremental builds:

```
> ../x.py build --incremental
> ./x.py build --incremental
```

The `--incremental` flag will store incremental compilation artifacts
Expand Down

0 comments on commit 3de1f8b

Please sign in to comment.