[libc-commits] [PATCH] D146482: [libc][obvious] fix missing stdio dependency

Michael Jones via Phabricator via libc-commits libc-commits at lists.llvm.org
Mon Mar 20 17:37:16 PDT 2023


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3d9e646c7c9f: [libc][obvious] fix missing stdio dependency (authored by michaelrj).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146482/new/

https://reviews.llvm.org/D146482

Files:
  libc/src/wchar/CMakeLists.txt
  libc/test/src/wchar/CMakeLists.txt


Index: libc/test/src/wchar/CMakeLists.txt
===================================================================
--- libc/test/src/wchar/CMakeLists.txt
+++ libc/test/src/wchar/CMakeLists.txt
@@ -7,6 +7,7 @@
   SRCS
     btowc_test.cpp
   DEPENDS
+    libc.include.stdio
     libc.src.wchar.btowc
 )
 
Index: libc/src/wchar/CMakeLists.txt
===================================================================
--- libc/src/wchar/CMakeLists.txt
+++ libc/src/wchar/CMakeLists.txt
@@ -6,5 +6,6 @@
   HDRS
     wctob.h
   DEPENDS 
+    libc.include.stdio
     libc.src.__support.wctype_utils
 )


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D146482.506802.patch
Type: text/x-patch
Size: 584 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230321/40f2b033/attachment.bin>


More information about the libc-commits mailing list