[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Minios-devel] [UNIKRAFT/NEWLIB PATCH 1/2] Add math soures for long functions


  • To: "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Date: Sat, 9 Nov 2019 10:55:59 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=stud.acs.upb.ro; dmarc=pass action=none header.from=stud.acs.upb.ro; dkim=pass header.d=stud.acs.upb.ro; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=eFj1bSD368OFghgFwmrvpSAllcJ2egHVTJEr6r7QWIE=; b=cvvOHinFpEO8swL2UzPOfKvTWXqSr/DVQGaJm56Cljd4Uc9WcK/DBNfxv6u6/IPnZaW371wwtCZgP8Nnoia7pVVj1tEPfJag2o8aPeSEdgrBNL5M9TRrh9/au7wlXB72jzId2diFH9U/pu+RPVK41p8Zbqgy+srp8CJ669dhX3OKAku9IiEPhaiSthMj0aZrXLD7PT+sJHYrP7tSVBE4kq3Pg241CXEXi8YSYsnsmh4TzalP8FKDpjdVTSQGlsAnjm3m8xhEfAYlvTXp/jAf5VPOJHaDHU2MfSPiwfYDAogBCt4lxrbAVvXRXhqFdPdkd08mPdVYn1XBX0VnQFlEZw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=dHiEn++V1kKPFx4kb1SaBPkceU1fANS7SqLHvm5dBO26BEWAi1qEbabhXOw7xM0R3ZZEeqqhG5+PkqwMNInyJPP5THHfIqoQ4xyg8+dmLM9gS49/97MDVgzHTAraDEPVtTeeRnBMt8fqfPtXkH60jRPVYvTxyRNm6M7HyoQqOndFBo5Q+VFO6RE1xcozmTOKQJsQ8LI3kMSu3pNBMI1l5cf5xxI5ibhd7q38HJ2pS3U00cPr40/xbsX6QHO9ERZuL3bTdMaYUwwD3lvV2fXa3+IA2I91q3GEXUhvfbTGy8w9FS55nUxz77rktxUIAEci/4lCcA6qQDgt1M6yFV6xgQ==
  • Authentication-results: spf=none (sender IP is ) smtp.mailfrom=vlad_andrei.badoiu@xxxxxxxxxxxxxxx;
  • Cc: "felipe.huici@xxxxxxxxx" <felipe.huici@xxxxxxxxx>, Vlad-Andrei BĂDOIU (78692) <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
  • Delivery-date: Sat, 09 Nov 2019 10:56:03 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Thread-index: AQHVluxFnm+sTPJBr0umFzkM6UATHQ==
  • Thread-topic: [UNIKRAFT/NEWLIB PATCH 1/2] Add math soures 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 <vlad_andrei.badoiu@xxxxxxxxxxxxxxx>
---
 Makefile.uk | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

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
-- 
2.20.1


_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.