This revision was automatically updated to reflect the committed changes. Closed by commit rLLDB350538: [CMake] Fix standalone builds: make dependency to LLVM's `count` conditional (authored by stefan.graenitz, committed by ). Herald added a subscriber: abidh.
Changed prior to commit: https://reviews.llvm.org/D56389?vs=180493&id=180507#toc Repository: rLLDB LLDB CHANGES SINCE LAST ACTION https://reviews.llvm.org/D56389/new/ https://reviews.llvm.org/D56389 Files: lit/CMakeLists.txt Index: lit/CMakeLists.txt =================================================================== --- lit/CMakeLists.txt +++ lit/CMakeLists.txt @@ -26,7 +26,6 @@ string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLDB_DOTEST_ARGS "${LLDB_DOTEST_ARGS}") list(APPEND LLDB_TEST_DEPS - count LLDBUnitTests dsymutil llc @@ -73,6 +72,7 @@ if(NOT LLDB_BUILT_STANDALONE) list(APPEND LLDB_TEST_DEPS FileCheck + count not ) endif()
Index: lit/CMakeLists.txt =================================================================== --- lit/CMakeLists.txt +++ lit/CMakeLists.txt @@ -26,7 +26,6 @@ string(REPLACE ${CMAKE_CFG_INTDIR} ${LLVM_BUILD_MODE} LLDB_DOTEST_ARGS "${LLDB_DOTEST_ARGS}") list(APPEND LLDB_TEST_DEPS - count LLDBUnitTests dsymutil llc @@ -73,6 +72,7 @@ if(NOT LLDB_BUILT_STANDALONE) list(APPEND LLDB_TEST_DEPS FileCheck + count not ) endif()
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits