From: Razvan Virtan Date: Thu, 6 Oct 2022 12:52:29 +0000 (+0300) Subject: Enable FPSIMD support on ARM64 X-Git-Tag: RELEASE-0.11.0~6 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2d69046c7cecf31bc49e8997b9c2df5481005602;p=unikraft%2Flibs%2Fmusl.git Enable FPSIMD support on ARM64 Some of the functions implemented in musl can't work without the ARM64 FPSIMD registers. This will fail unikraft build with musl when FPSIMD is not enabled. Enable FPSIMD by default when lib-musl is selected in menuconfig. Signed-off-by: Razvan Virtan Reviewed-by: Maria Sfiraiala Reviewed-by: Robert Kuban Reviewed-by: Razvan Deaconescu Approved-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Closes: #14 --- diff --git a/Config.uk b/Config.uk index 9684058..29a847e 100644 --- a/Config.uk +++ b/Config.uk @@ -26,6 +26,7 @@ menuconfig LIBMUSL select LIBMUSL_ENV select LIBSYSCALL_SHIM_NOWRAPPER + select FPSIMD if ARCH_ARM_64 if LIBMUSL