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.
2 parents 5612f30 + c172ebd commit 9945ce8Copy full SHA for 9945ce8
build.rs
@@ -419,6 +419,18 @@ mod c {
419
if target_os != "windows" {
420
sources.extend(&[("__multc3", "multc3.c")]);
421
}
422
+
423
+ if target_env == "musl" {
424
+ sources.extend(&[
425
+ ("__addtf3", "addtf3.c"),
426
+ ("__multf3", "multf3.c"),
427
+ ("__subtf3", "subtf3.c"),
428
+ ("__divtf3", "divtf3.c"),
429
+ ("__powitf2", "powitf2.c"),
430
+ ("__fe_getround", "fp_mode.c"),
431
+ ("__fe_raise_inexact", "fp_mode.c"),
432
+ ]);
433
+ }
434
435
436
if target_arch == "mips" {
0 commit comments