mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
Enable long double functions for aarch64
Per discussion in #157, it is correct to enable these for aarch64.
This commit is contained in:
parent
ba43b3616c
commit
b5b63ba66d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue