Skip to content

Commit ba19e98

Browse files
[lldb][CMake] If make isn't found, print a warning but don't error out (#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 6dad29a commit ba19e98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lldb/test/API/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ else()
5757
message(STATUS "Found make: ${LLDB_DEFAULT_TEST_MAKE}")
5858
else()
5959
message(STATUS "Not found: make")
60-
message(SEND_ERROR
61-
"LLDB tests require 'make' tool. Please pass via `LLDB_TEST_MAKE` "
62-
"(or otherwise disable tests with `LLDB_INCLUDE_TESTS=OFF`)")
60+
message(WARNING
61+
"Many LLDB API tests require 'make' tool. Please provide it in Path "
62+
"or pass via LLDB_TEST_MAKE.")
6363
endif()
6464
endif()
6565

0 commit comments

Comments
 (0)