libroot/posix: No long doubles on arm

Change-Id: I98d557852c5099bfe0b1372ad907aa84acd16d26
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2127
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
Alexander von Gluck IV 2020-01-18 23:14:36 -06:00 committed by Adrien Destugues
parent 9df77ea390
commit a07c119825
1 changed files with 18 additions and 18 deletions

View File

@ -29,24 +29,24 @@ local genericSources =
lshift.c rshift.c
sub_n.c submul_1.c
s_clog.c s_clogf.c s_clogl.c
s_csqrt.c s_csqrtf.c s_csqrtl.c
s_cacos.c s_cacosf.c s_cacosl.c
s_cacosh.c s_cacoshf.c s_cacoshl.c
s_casin.c s_casinf.c s_casinl.c
s_casinh.c s_casinhf.c s_casinhl.c
s_catan.c s_catanf.c s_catanl.c
s_catanh.c s_catanhf.c s_catanhl.c
s_csin.c s_csinf.c s_csinl.c
s_csinh.c s_csinhf.c s_csinhl.c
s_ctan.c s_ctanf.c s_ctanl.c
s_ctanh.c s_ctanhf.c s_ctanhl.c
s_ccos.c s_ccosf.c s_ccosl.c
s_ccosh.c s_ccoshf.c s_ccoshl.c
s_cexp.c s_cexpf.c s_cexpl.c
s_clog10.c s_clog10f.c s_clog10l.c
s_cpow.c s_cpowf.c s_cpowl.c
s_cproj.c s_cprojf.c s_cprojl.c
s_clog.c s_clogf.c
s_csqrt.c s_csqrtf.c
s_cacos.c s_cacosf.c
s_cacosh.c s_cacoshf.c
s_casin.c s_casinf.c
s_casinh.c s_casinhf.c
s_catan.c s_catanf.c
s_catanh.c s_catanhf.c
s_csin.c s_csinf.c
s_csinh.c s_csinhf.c
s_ctan.c s_ctanf.c
s_ctanh.c s_ctanhf.c
s_ccos.c s_ccosf.c
s_ccosh.c s_ccoshf.c
s_cexp.c s_cexpf.c
s_clog10.c s_clog10f.c
s_cpow.c s_cpowf.c
s_cproj.c s_cprojf.c
;
local architectureObject ;