We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
force-soft-floats
build.rs
1 parent 2207206 commit ed34a6cCopy full SHA for ed34a6c
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" {
0 commit comments