From 0d6923d1b58ca325daf97cc9617651e812b14c54 Mon Sep 17 00:00:00 2001 From: topecongiro Date: Thu, 19 Oct 2017 06:00:15 +0900 Subject: [PATCH 1/2] Remove --enable-rustbuild config option from example --- src/bootstrap/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/README.md b/src/bootstrap/README.md index 6eb074605fc14..7c257682e4a58 100644 --- a/src/bootstrap/README.md +++ b/src/bootstrap/README.md @@ -129,7 +129,7 @@ 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 From e11abd15419b513500da07cf22e2b36ceb9b35a1 Mon Sep 17 00:00:00 2001 From: topecongiro Date: Thu, 19 Oct 2017 06:02:13 +0900 Subject: [PATCH 2/2] Fix typos --- src/bootstrap/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bootstrap/README.md b/src/bootstrap/README.md index 7c257682e4a58..9ff681ac68087 100644 --- a/src/bootstrap/README.md +++ b/src/bootstrap/README.md @@ -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 --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