[libc-commits] [PATCH] D124304: [libc] Fix PrintfMatcher Cmake Rule

Michael Jones via Phabricator via libc-commits libc-commits at lists.llvm.org
Fri Apr 22 14:40:35 PDT 2022


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 rGef6614e4a231: [libc] Fix PrintfMatcher Cmake Rule (authored by michaelrj).

Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D124304

Files:
  libc/utils/UnitTest/CMakeLists.txt


Index: libc/utils/UnitTest/CMakeLists.txt
===================================================================
--- libc/utils/UnitTest/CMakeLists.txt
+++ libc/utils/UnitTest/CMakeLists.txt
@@ -54,6 +54,13 @@
   libc.src.__support.CPP.array_ref
 )
 
+if(NOT LLVM_LIBC_FULL_BUILD) # TODO(michaelrj): make a more permanant solution.
+  return()
+endif()
+
+#currently stdio is fullbuild only, so this matcher that depends on a piece of
+#printf also has to be fullbuild only.
+
 add_library(
   LibcPrintfHelpers
     PrintfMatcher.h


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124304.424618.patch
Type: text/x-patch
Size: 530 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20220422/e909bf1c/attachment.bin>


More information about the libc-commits mailing list