From 434589b73c7bcd8296840061a4569203baa4c3f3 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 2 Apr 2023 15:48:23 +0300 Subject: [PATCH] Disable SIMD in printf functions --- libs/libinit/printf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/libinit/printf.c b/libs/libinit/printf.c index 3263ee8..339fd0c 100644 --- a/libs/libinit/printf.c +++ b/libs/libinit/printf.c @@ -77,12 +77,12 @@ // Support for the decimal notation floating point conversion specifiers (%f, %F) #ifndef PRINTF_SUPPORT_DECIMAL_SPECIFIERS -#define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1 +// #define PRINTF_SUPPORT_DECIMAL_SPECIFIERS 1 #endif // Support for the exponential notation floating point conversion specifiers (%e, %g, %E, %G) #ifndef PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS -#define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1 +// #define PRINTF_SUPPORT_EXPONENTIAL_SPECIFIERS 1 #endif // Support for the length write-back specifier (%n)