From f4cc61ae101467fd9be8a824cb36c2cc16662c33 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Fri, 8 Dec 2023 18:45:07 +0100 Subject: [PATCH] builder/picolib: add needed file for compiling math functions with error support. Thanks to @aykevl for actually finding and providing this fix, I really just reported the problem and tested the fix. Signed-off-by: deadprogram --- builder/picolibc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/picolibc.go b/builder/picolibc.go index 91ad27be6d..09a37175bf 100644 --- a/builder/picolibc.go +++ b/builder/picolibc.go @@ -337,6 +337,7 @@ var picolibcSourcesLarge = []string{ "libm/common/math_err_may_uflow.c", "libm/common/math_err_check_uflow.c", "libm/common/math_err_check_oflow.c", + "libm/common/math_errf_invalidf.c", "libm/common/math_inexact.c", "libm/common/math_inexactf.c", "libm/common/log.c",