[libc-commits] [libc] a14d084 - Reland "[libc] Enable baremetal float printf using modular format" (#199758)

via libc-commits libc-commits at lists.llvm.org
Tue May 26 14:47:58 PDT 2026


Author: Daniel Thornburgh
Date: 2026-05-26T14:47:54-07:00
New Revision: a14d084bbb1a7261d8a71c56120159abb6af330b

URL: https://github.com/llvm/llvm-project/commit/a14d084bbb1a7261d8a71c56120159abb6af330b
DIFF: https://github.com/llvm/llvm-project/commit/a14d084bbb1a7261d8a71c56120159abb6af330b.diff

LOG: Reland "[libc] Enable baremetal float printf using modular format" (#199758)

Reverts llvm/llvm-project#199114

#199118 fixed the issue uncovered in the Fuchsia CI build.

Added: 
    

Modified: 
    libc/config/baremetal/config.json

Removed: 
    


################################################################################
diff  --git a/libc/config/baremetal/config.json b/libc/config/baremetal/config.json
index 1c52cd0093e1c..0254dc5a98867 100644
--- a/libc/config/baremetal/config.json
+++ b/libc/config/baremetal/config.json
@@ -13,9 +13,6 @@
     "LIBC_CONF_PRINTF_DISABLE_FIXED_POINT": {
       "value": true
     },
-    "LIBC_CONF_PRINTF_DISABLE_FLOAT": {
-      "value": true
-    },
     "LIBC_CONF_PRINTF_DISABLE_INDEX_MODE": {
       "value": true
     },
@@ -33,6 +30,9 @@
     },
     "LIBC_COPT_PRINTF_DISABLE_BITINT": {
       "value": true
+    },
+    "LIBC_CONF_PRINTF_MODULAR": {
+      "value": true
     }
   },
   "scanf": {


        


More information about the libc-commits mailing list