From ec7167bac7c89b43449dbce81e65fb09e5d27cb5 Mon Sep 17 00:00:00 2001 From: PiJoules <6019989+PiJoules@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:31:05 -0800 Subject: [PATCH] [libc] Disable fixed point printing for baremetal (#126115) This follows suite with disabling float printing. --- libc/config/baremetal/config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libc/config/baremetal/config.json b/libc/config/baremetal/config.json index 08c581d1c682..105e417d165f 100644 --- a/libc/config/baremetal/config.json +++ b/libc/config/baremetal/config.json @@ -5,6 +5,9 @@ } }, "printf": { + "LIBC_CONF_PRINTF_DISABLE_FIXED_POINT": { + "value": true + }, "LIBC_CONF_PRINTF_DISABLE_FLOAT": { "value": true },