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

Commit 8c0b796

Browse files
committed
disable check
1 parent f54e3fa commit 8c0b796

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

crates/musl-math-sys/build.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ const MULTIPLE_SYMBOLS: &[(&str, &[&str])] = &[
4242
fn main() {
4343
let cfg = Config::from_env();
4444

45-
if cfg.target_env == "msvc"
46-
|| cfg.target_family == "wasm"
47-
|| cfg.target_features.iter().any(|f| f == "thumb-mode")
48-
{
49-
println!(
50-
"cargo::warning=Musl doesn't compile with the current \
51-
target {}; skipping build",
52-
&cfg.target_string
53-
);
54-
return;
55-
}
45+
// if cfg.target_env == "msvc"
46+
// || cfg.target_family == "wasm"
47+
// || cfg.target_features.iter().any(|f| f == "thumb-mode")
48+
// {
49+
// println!(
50+
// "cargo::warning=Musl doesn't compile with the current \
51+
// target {}; skipping build",
52+
// &cfg.target_string
53+
// );
54+
// return;
55+
// }
5656

5757
build_musl_math(&cfg);
5858
}

0 commit comments

Comments
 (0)