Skip to content

Commit 3de1f8b

Browse files
committed
Rollup merge of rust-lang#45374 - topecongiro:remove-enable-rustbuild-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`.
2 parents 342e01b + e11abd1 commit 3de1f8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bootstrap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ configure your directory to use this build, like so:
129129
# configure to use local rust instead of downloading a beta.
130130
# `--local-rust-root` is optional here. If elided, we will
131131
# use whatever rustc we find on your PATH.
132-
> configure --enable-rustbuild --local-rust-root=~/.cargo/ --enable-local-rebuild
132+
> ./configure --local-rust-root=~/.cargo/ --enable-local-rebuild
133133
```
134134

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

138138
```
139-
> ../x.py build --incremental
139+
> ./x.py build --incremental
140140
```
141141

142142
The `--incremental` flag will store incremental compilation artifacts

0 commit comments

Comments
 (0)