Skip to content

Commit 541128d

Browse files
committed
Override linker in cargotest on windows
1 parent ecc5d26 commit 541128d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tools/cargotest/main.rs

+4
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,10 @@ fn run_cargo_test(
206206
.env("CFG_DISABLE_CROSS_TESTS", "1")
207207
// Relax #![deny(warnings)] in some crates
208208
.env("RUSTFLAGS", "--cap-lints warn")
209+
// servo tries to use 'lld-link.exe' on windows, but we don't
210+
// have lld on our PATH in CI. Override it to use 'link.exe'
211+
.env("CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER", "link.exe")
212+
.env("CARGO_TARGET_I686_PC_WINDOWS_MSVC_LINKER", "link.exe")
209213
.current_dir(crate_path)
210214
.status()
211215
.unwrap();

0 commit comments

Comments
 (0)