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.
long double
1 parent f26cf72 commit 5575d91Copy full SHA for 5575d91
build.rs
@@ -425,13 +425,18 @@ mod c {
425
sources.extend(&[("__multc3", "multc3.c")]);
426
}
427
428
- if target_env == "musl" {
+ if target_os == "linux" {
429
sources.extend(&[
430
("__addtf3", "addtf3.c"),
431
("__multf3", "multf3.c"),
432
("__subtf3", "subtf3.c"),
433
("__divtf3", "divtf3.c"),
434
("__powitf2", "powitf2.c"),
435
+ ]);
436
+ }
437
+
438
+ if target_env == "musl" {
439
+ sources.extend(&[
440
("__fe_getround", "fp_mode.c"),
441
("__fe_raise_inexact", "fp_mode.c"),
442
]);
0 commit comments