Skip to content

Commit b2f1f2e

Browse files
authored
Merge pull request #150 from PrototypeNM1/win-bundled-lld
Use Rust bundled lld for msvc target
2 parents 9569beb + 74db5e2 commit b2f1f2e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.cargo/config_fast_builds

+2-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
1010
[target.x86_64-apple-darwin]
1111
rustflags = ["-Zshare-generics=y"]
1212

13-
# NOTE: you must manually install lld on windows. you can easily do this with the "scoop" package manager:
14-
# `scoop install llvm`
1513
[target.x86_64-pc-windows-msvc]
16-
linker = "lld-link.exe"
17-
rustflags = ["-Clinker=lld", "-Zshare-generics=y"]
14+
linker = "rust-lld.exe"
15+
rustflags = ["-Zshare-generics=y"]

0 commit comments

Comments
 (0)