Skip to content

Commit b4f4d5e

Browse files
committed
Support long double intrinsics in any aarch64 linux
Expands the support added in rust-lang#377 from just musl to any linux. Fixes rust-lang#428
1 parent f26cf72 commit b4f4d5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ mod c {
425425
sources.extend(&[("__multc3", "multc3.c")]);
426426
}
427427

428-
if target_env == "musl" {
428+
if target_os == "linux" {
429429
sources.extend(&[
430430
("__addtf3", "addtf3.c"),
431431
("__multf3", "multf3.c"),

0 commit comments

Comments
 (0)