[libc-commits] [libc] [libc][NFC] Fix `-DSHOW_INTERMEDIATE_OBJECTS=DEPS` to work properly for entry points and unit tests. (PR #79254)

via libc-commits libc-commits at lists.llvm.org
Wed Jan 24 04:05:55 PST 2024


================
@@ -652,7 +652,7 @@ function(create_entrypoint_object fq_target_name)
   if(SHOW_INTERMEDIATE_OBJECTS)
     message(STATUS "Adding entrypoint object ${fq_target_name}")
     if(${SHOW_INTERMEDIATE_OBJECTS} STREQUAL "DEPS")
-      foreach(dep IN LISTS ADD_OBJECT_DEPENDS)
+      foreach(dep IN LISTS ADD_ENTRYPOINT_OBJ_DEPENDS)
         message(STATUS "  ${fq_target_name} depends on ${dep}")
----------------
lntue wrote:

Yes, in this mode it has been very verbose.  But I tried with just print out the list before, and it was very hard to parse and inspect visually.

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


More information about the libc-commits mailing list