[libc-commits] [libc] [libc] Add `ctype.h` locale variants (PR #102711)

Michael Jones via libc-commits libc-commits at lists.llvm.org
Tue Aug 13 09:52:38 PDT 2024


================
@@ -146,3 +146,141 @@ add_entrypoint_object(
   DEPENDS
     libc.src.__support.ctype_utils
 )
+
+# Do not build the locale versions in overlay mode.
+if(NOT LLVM_LIBC_FULL_BUILD)
+  return()
+endif()
+
+add_entrypoint_object(
+  isalnum_l
+  SRCS
+    isalnum_l.cpp
+  HDRS
+    isalnum_l.h
+  DEPENDS
+    libc.include.ctype
----------------
michaelrj-google wrote:

add dependency on the proxy header

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


More information about the libc-commits mailing list