[llvm] 81cf8b8 - [LLVM] Remove `prepare-check-lit` from lit testsuite dependencies (#159922)

via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 23 10:41:15 PDT 2025


Author: Rahul Joshi
Date: 2025-09-23T10:41:11-07:00
New Revision: 81cf8b886b3c617f7e6806de7856e81148ed477c

URL: https://github.com/llvm/llvm-project/commit/81cf8b886b3c617f7e6806de7856e81148ed477c
DIFF: https://github.com/llvm/llvm-project/commit/81cf8b886b3c617f7e6806de7856e81148ed477c.diff

LOG: [LLVM] Remove `prepare-check-lit` from lit testsuite dependencies (#159922)

Remove `prepare-check-lit` as it's not intended to prepare the
`llvm-lit` binary (which was the original intent of adding this target
to the dependencies). `llvm-lit` is pre-populated when you run cmake, so
there is no need to have an extra dependency for that. That also means
that if you do `rm -rf build/bin` and then run `ninja -C build
check-llvm-filecheck` llvm-lit will not get copied over and you need to
run cmake again to get it back.

Added: 
    

Modified: 
    llvm/test/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/test/CMakeLists.txt b/llvm/test/CMakeLists.txt
index 76ed246ffd076..4db7663045ecc 100644
--- a/llvm/test/CMakeLists.txt
+++ b/llvm/test/CMakeLists.txt
@@ -65,7 +65,6 @@ set(LLVM_TEST_DEPENDS_COMMON
   count
   llvm-config
   not
-  prepare-check-lit
   )
 
 set(LLVM_TEST_DEPENDS


        


More information about the llvm-commits mailing list