Merge pull request #158 from mato/aarch64-frexpl

Enable long double functions for aarch64
This commit is contained in:
Elliot Saba 2017-07-31 08:13:43 -07:00 committed by GitHub
commit 0598080ca0
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ ifneq ($(OS), WINNT)
$(CUR_SRCS) += s_nan.c
endif
# Add in long double functions for x86 and x64
ifneq ($(filter $(ARCH),i387 amd64),)
# Add in long double functions for x86, x64 and aarch64
ifneq ($(filter $(ARCH),i387 amd64 aarch64),)
# C99 long double functions
$(CUR_SRCS) += s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c