From 17ddd6c09d38d06eb4cf50696b15da39dde26fd1 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Fri, 14 Aug 2015 13:46:05 -0500 Subject: [PATCH] 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) --- src/system/libroot/posix/glibc/arch/arm/Jamfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/system/libroot/posix/glibc/arch/arm/Jamfile b/src/system/libroot/posix/glibc/arch/arm/Jamfile index 394d8eda0b..13db611f18 100644 --- a/src/system/libroot/posix/glibc/arch/arm/Jamfile +++ b/src/system/libroot/posix/glibc/arch/arm/Jamfile @@ -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