We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6652b65 + ed34a6c commit af92df3Copy full SHA for af92df3
2 files changed
build.rs
@@ -51,8 +51,9 @@ fn main() {
51
println!("cargo:compiler-rt={}", cwd.join("compiler-rt").display());
52
53
// Activate libm's unstable features to make full use of Nightly.
54
- println!("cargo::rustc-check-cfg=cfg(feature, values(\"unstable\"))");
+ println!("cargo::rustc-check-cfg=cfg(feature, values(\"unstable\", \"force-soft-floats\"))");
55
println!("cargo:rustc-cfg=feature=\"unstable\"");
56
+ println!("cargo:rustc-cfg=feature=\"force-soft-floats\"");
57
58
// Emscripten's runtime includes all the builtins
59
if target.os == "emscripten" {
libm
0 commit comments