@@ -34,10 +34,10 @@ you can write: <!-- date-check: apr 2022 --><!-- the date comment is for the edi
34
34
" --json-output"
35
35
],
36
36
"rust-analyzer.rustfmt.overrideCommand" : [
37
- " ./build/$TARGET_TRIPLE /stage0/bin/rustfmt" ,
37
+ " ./build/host /stage0/bin/rustfmt" ,
38
38
" --edition=2021"
39
39
],
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" ,
41
41
"rust-analyzer.procMacro.enable" : true ,
42
42
"rust-analyzer.cargo.buildScripts.enable" : true ,
43
43
"rust-analyzer.cargo.buildScripts.invocationLocation" : " root" ,
@@ -48,19 +48,14 @@ you can write: <!-- date-check: apr 2022 --><!-- the date comment is for the edi
48
48
" check" ,
49
49
" --json-output"
50
50
],
51
- "rust-analyzer.cargo.sysroot" : " ./build/$TARGET_TRIPLE /stage0-sysroot" ,
51
+ "rust-analyzer.cargo.sysroot" : " ./build/host /stage0-sysroot" ,
52
52
"rust-analyzer.rustc.source" : " ./Cargo.toml" ,
53
53
}
54
54
```
55
55
56
56
in your ` .vscode/settings.json ` file. This will ask ` rust-analyzer ` to use
57
57
` ./x.py check ` to check the sources, and the stage 0 rustfmt to format them.
58
58
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
-
64
59
If you have enough free disk space and you would like to be able to run ` x.py ` commands while
65
60
rust-analyzer runs in the background, you can also add ` --build-dir build-rust-analyzer ` to the
66
61
` overrideCommand ` to avoid x.py locking.
0 commit comments