Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 46fa744

Browse files
committed
Disable JIT on windows
1 parent 231f7c6 commit 46fa744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_system/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ impl TestRunner {
465465
out_dir.push("out");
466466

467467
let is_native = host_triple == target_triple;
468-
let jit_supported = target_triple.contains("x86_64") && is_native;
468+
let jit_supported = target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
469469

470470
let mut rust_flags = env::var("RUSTFLAGS").ok().unwrap_or("".to_string());
471471
let mut run_wrapper = Vec::new();

0 commit comments

Comments
 (0)