From: Vlad-Andrei BĂDOIU (78692) Date: Sat, 9 Nov 2019 10:55:59 +0000 (+0000) Subject: Add math sources for long functions X-Git-Tag: RELEASE-0.4~18 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2fb0bf9e37c440c4ea7d9e7caa23cbd2a4453d3b;p=unikraft%2Flibs%2Fnewlib.git Add math sources for long functions We enable some of the math sources (e.g., powl.c) by adding them to Makefile.uk Signed-off-by: Vlad-Andrei Badoiu Reviewed-by: Felipe Huici --- diff --git a/Makefile.uk b/Makefile.uk index a820aea..5a46b88 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -973,6 +973,20 @@ LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/math/w_tgamma.c # Newlib/libm code -- common ################################################################################ LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/llroundl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/logl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/expl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/ceill.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/floorl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/ldexpl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/frexpl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/powl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/cosl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/sinl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/atanl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/tanl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/fmodl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/sinhl.c +LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/coshl.c LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/s_finite.c LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/s_copysign.c LIBNEWLIBM_SRCS-y += $(LIBNEWLIB_LIBM)/common/s_modf.c