Skip to content

Commit 7fa04fd

Browse files
authored
Merge pull request rust-lang#663 from GuillaumeGomez/soft-floats
2 parents f186c7f + 145143a commit 7fa04fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

library/compiler-builtins/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ fn main() {
5151
println!("cargo:compiler-rt={}", cwd.join("compiler-rt").display());
5252

5353
// Activate libm's unstable features to make full use of Nightly.
54-
println!("cargo::rustc-check-cfg=cfg(feature, values(\"unstable\"))");
54+
println!("cargo::rustc-check-cfg=cfg(feature, values(\"unstable\", \"force-soft-floats\"))");
5555
println!("cargo:rustc-cfg=feature=\"unstable\"");
56+
println!("cargo:rustc-cfg=feature=\"force-soft-floats\"");
5657

5758
// Emscripten's runtime includes all the builtins
5859
if target.os == "emscripten" {

library/compiler-builtins/libm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 279e5f6abe0a2ca9066962d9ec894f0df1f417ac
1+
Subproject commit 300edb32520b1673e16d2411a0e2e6273959eb46

0 commit comments

Comments
 (0)