libroot/arm: Add in some missing math functions

* Using native assembly functions would be a lot faster,
  but would require quite a bit of changes to glibc.
* This gets arm linking for now... I'd personally like
  to see musl in here in the future for gcc4 images. (pre-R2)
This commit is contained in:
Alexander von Gluck IV 2015-08-14 13:46:05 -05:00
parent ab341b9d63
commit 17ddd6c09d
1 changed files with 3 additions and 0 deletions

View File

@ -34,6 +34,9 @@ local genericSources =
s_isnan.c s_isnanf.c
s_signbit.c s_signbitf.c s_signbitl.c
s_clog.c s_clogf.c
s_log1p.c s_log1pf.c s_log1pl.c
s_csqrt.c s_csqrtf.c
s_floor.c s_floorf.c
s_ceil.c s_ceilf.c
s_modf.c