We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481484c commit 1878ca6Copy full SHA for 1878ca6
build_system/tests.rs
@@ -450,7 +450,8 @@ impl TestRunner {
450
out_dir.push("out");
451
452
let is_native = host_triple == target_triple;
453
- let jit_supported = target_triple.contains("x86_64") && is_native;
+ let jit_supported =
454
+ target_triple.contains("x86_64") && is_native && !host_triple.contains("windows");
455
456
let mut rust_flags = env::var("RUSTFLAGS").ok().unwrap_or("".to_string());
457
let mut run_wrapper = Vec::new();
0 commit comments