From: Andrei Tatar Date: Tue, 8 Aug 2023 10:20:07 +0000 (+0200) Subject: Config.uk: Select libcompiler-rt for libcomplex X-Git-Tag: RELEASE-0.14.0~8 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fe5548846ad74f79d5303ef4d7ad0ca7d0fd3f6b;p=unikraft%2Flibs%2Fmusl.git Config.uk: Select libcompiler-rt for libcomplex The cpow* functions provided by libcomplex make use of the `__mul?c3` functions, implemented by libcompiler-rt, when building with either Clang or GCC. Therefore, this change makes musl unconditionally select libcompiler-rt when building libcomplex. Signed-off-by: Andrei Tatar Reviewed-by: Stefan Jumarea Approved-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Closes: #64 --- diff --git a/Config.uk b/Config.uk index cf02809..dfb5584 100644 --- a/Config.uk +++ b/Config.uk @@ -39,6 +39,7 @@ config LIBMUSL_AIO config LIBMUSL_COMPLEX bool "libcomplex" default n + select LIBCOMPILER_RT config LIBMUSL_CONF bool "libconf"