Skip to content

Commit 0da07d6

Browse files
[lldb][CMake] If make isn't found, print a warning but don't error out (llvm#111531)
Bot maintainers should be aware and it became too much of a burden for developers. In particular on Windows, where make.exe won't be found in Path typically.
1 parent 10fef7f commit 0da07d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/test/API/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ else()
7373
message(STATUS "Found make: ${LLDB_DEFAULT_TEST_MAKE}")
7474
else()
7575
message(STATUS "Not found: make")
76-
message(SEND_ERROR
77-
"LLDB tests require 'make' tool. Please pass via `LLDB_TEST_MAKE` "
78-
"(or otherwise disable tests with `LLDB_INCLUDE_TESTS=OFF`)")
76+
message(WARNING
77+
"Many LLDB API tests require 'make' tool. Please provide it in Path "
78+
"or pass via LLDB_TEST_MAKE.")
7979
endif()
8080
endif()
8181

0 commit comments

Comments
 (0)