Skip to content

Commit 8f46f3e

Browse files
committed
Replace $TARGET with host
This avoids having to manually modify the configuration in the docs.
1 parent 0bd5bd1 commit 8f46f3e

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

src/building/suggested.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ you can write: <!-- date-check: apr 2022 --><!-- the date comment is for the edi
3434
"--json-output"
3535
],
3636
"rust-analyzer.rustfmt.overrideCommand": [
37-
"./build/$TARGET_TRIPLE/stage0/bin/rustfmt",
37+
"./build/host/stage0/bin/rustfmt",
3838
"--edition=2021"
3939
],
40-
"rust-analyzer.procMacro.server": "./build/$TARGET_TRIPLE/stage0/libexec/rust-analyzer-proc-macro-srv",
40+
"rust-analyzer.procMacro.server": "./build/host/stage0/libexec/rust-analyzer-proc-macro-srv",
4141
"rust-analyzer.procMacro.enable": true,
4242
"rust-analyzer.cargo.buildScripts.enable": true,
4343
"rust-analyzer.cargo.buildScripts.invocationLocation": "root",
@@ -48,19 +48,14 @@ you can write: <!-- date-check: apr 2022 --><!-- the date comment is for the edi
4848
"check",
4949
"--json-output"
5050
],
51-
"rust-analyzer.cargo.sysroot": "./build/$TARGET_TRIPLE/stage0-sysroot",
51+
"rust-analyzer.cargo.sysroot": "./build/host/stage0-sysroot",
5252
"rust-analyzer.rustc.source": "./Cargo.toml",
5353
}
5454
```
5555

5656
in your `.vscode/settings.json` file. This will ask `rust-analyzer` to use
5757
`./x.py check` to check the sources, and the stage 0 rustfmt to format them.
5858

59-
> NOTE: Make sure to replace `TARGET_TRIPLE` in the `rust-analyzer.rustfmt.overrideCommand`
60-
> setting with the appropriate target triple for your machine. An example of such
61-
> a triple is `x86_64-unknown-linux-gnu`. An easy way to check your target triple
62-
> is to run `rustc -vV` and checking the `host` value of its output.
63-
6459
If you have enough free disk space and you would like to be able to run `x.py` commands while
6560
rust-analyzer runs in the background, you can also add `--build-dir build-rust-analyzer` to the
6661
`overrideCommand` to avoid x.py locking.

src/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ the entire stage 2 compiler and compile the various books published on
346346
[doc.rust-lang.org][docs]. When updating documentation for the standard library,
347347
first try `./x.py doc library`. If that fails, or if you need to
348348
see the output from the latest version of `rustdoc`, add `--stage 1`.
349-
Results should appear in `build/$TARGET/doc`.
349+
Results should appear in `build/host/doc`.
350350

351351
[docs]: https://doc.rust-lang.org
352352

src/rustdoc.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ does is call the `main()` that's in this crate's `lib.rs`, though.)
4646
* Use `./x.py build` to make a usable
4747
rustdoc you can run on other projects.
4848
* Add `library/test` to be able to use `rustdoc --test`.
49-
* Run `rustup toolchain link stage2 build/$TARGET/stage2` to add a
49+
* Run `rustup toolchain link stage2 build/host/stage2` to add a
5050
custom toolchain called `stage2` to your rustup environment. After
5151
running that, `cargo +stage2 doc` in any directory will build with
5252
your locally-compiled rustdoc.
5353
* Use `./x.py doc library` to use this rustdoc to generate the
5454
standard library docs.
55-
* The completed docs will be available in `build/$TARGET/doc` (under `core`, `alloc`, and `std`).
55+
* The completed docs will be available in `build/host/doc` (under `core`, `alloc`, and `std`).
5656
* If you want to copy those docs to a webserver, copy all of
57-
`build/$TARGET/doc`, since that's where the CSS, JS, fonts, and landing
57+
`build/host/doc`, since that's where the CSS, JS, fonts, and landing
5858
page are.
5959
* Use `./x.py test src/test/rustdoc*` to run the tests using a stage1
6060
rustdoc.

src/tests/running.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ machine, e.g. for RISC-V
242242
```
243243

244244
The binary will be created at
245-
`./build/$HOST_ARCH/stage2-tools/$TARGET_ARCH/release/remote-test-server`. Copy
245+
`./build/$HOST_ARCH/stage2-tools/host/release/remote-test-server`. Copy
246246
this over to the remote machine.
247247

248248
On the remote machine, run the `remote-test-server` with the `--bind

0 commit comments

Comments
 (0)