Skip to content

Commit

Permalink
Don't build complex long double functions on ARM
Browse files Browse the repository at this point in the history
ARM doesn't have long doubles.
  • Loading branch information
talex5 committed Jan 5, 2015
1 parent 3ac6130 commit 4da9a3d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Make.files
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ $(CUR_SRCS) += e_acosl.c e_asinl.c e_atan2l.c e_fmodl.c \
s_sinl.c s_sincosl.c s_tanl.c s_truncl.c w_cabsl.c \
s_nextafterl.c s_rintl.c s_scalbnl.c polevll.c
# s_cbrtl.c

# Complex long double functions
$(CUR_SRCS) += s_casinl.c s_ctanl.c
endif

# C99 complex functions
Expand All @@ -63,7 +66,7 @@ $(CUR_SRCS) += s_ccosh.c s_ccoshf.c s_cexp.c s_cexpf.c \
s_cacos.c s_cacosf.c \
s_cacosh.c s_cacoshf.c s_cacoshl.c s_cacosl.c \
s_casin.c s_casinf.c s_casinh.c s_casinhf.c s_casinhl.c \
s_casinl.c s_catan.c s_catanf.c s_catanh.c s_catanhf.c s_catanhl.c \
s_catan.c s_catanf.c s_catanh.c s_catanhf.c s_catanhl.c \
s_catanl.c s_ccoshl.c s_ccosl.c s_cexpl.c \
s_clog.c s_clogf.c s_clogl.c \
s_csinhl.c s_csinl.c s_ctanhl.c s_ctanl.c
s_csinhl.c s_csinl.c s_ctanhl.c

0 comments on commit 4da9a3d

Please sign in to comment.