[libc-commits] [libc] [libc]: Implement strfrom* functions and utils (PR #85438)

Michael Jones via libc-commits libc-commits at lists.llvm.org
Mon Mar 18 14:31:39 PDT 2024


================
@@ -52,6 +52,28 @@ add_entrypoint_object(
     libc.config.linux.app_h
 )
 
+add_entrypoint_object(
+  strfromf
+  SRCS
+    strfromf.cpp
+  HDRS
+    strfromf.h
+  DEPENDS
+    .str_from_util
+)
+
+add_header_library(
+  str_from_util
+  HDRS
+    str_from_util.h
+  DEPENDS
+    libc.src.stdio.printf_core.converter_atlas
----------------
michaelrj-google wrote:

this should be `libc.src.stdio.printf_core.converter`, `converter_atlas` doesn't have its own target.

https://github.com/llvm/llvm-project/pull/85438


More information about the libc-commits mailing list