Skip to content

Commit b5b63ba

Browse files
committed
Enable long double functions for aarch64
Per discussion in #157, it is correct to enable these for aarch64.
1 parent ba43b36 commit b5b63ba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Make.files

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ ifneq ($(OS), WINNT)
3636
$(CUR_SRCS) += s_nan.c
3737
endif
3838

39-
# Add in long double functions for x86 and x64
40-
ifneq ($(filter $(ARCH),i387 amd64),)
39+
# Add in long double functions for x86, x64 and aarch64
40+
ifneq ($(filter $(ARCH),i387 amd64 aarch64),)
4141
# C99 long double functions
4242
$(CUR_SRCS) += s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c
4343

0 commit comments

Comments
 (0)