File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -3,4 +3,22 @@ linker = "aarch64-linux-gnu-gcc"
3
3
4
4
[target .aarch64-apple-darwin ]
5
5
linker = " clang"
6
- rustflags = [" -C" , " link-arg=-fuse-ld=/usr/local/opt/llvm/bin/ld64.lld" ]
6
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
7
+
8
+ [target .x86_64-pc-windows-msvc ]
9
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
10
+
11
+ [target .x86_64-pc-windows-gnu ]
12
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
13
+
14
+ [target .x86_64-unknown-linux-gnu ]
15
+ linker = " gcc"
16
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
17
+
18
+ [target .riscv64gc-unknown-linux-gnu ]
19
+ linker = " riscv64-linux-gnu-gcc"
20
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
21
+
22
+ [target .armv7-unknown-linux-gnueabihf ]
23
+ linker = " arm-linux-gnueabihf-gcc"
24
+ rustflags = [" -C" , " link-arg=-fuse-ld=lld" ]
You can’t perform that action at this time.
0 commit comments