[Lldb-commits] [lldb] [lldb] Add early CMake check for 'make' tool (PR #111531)
Stefan Gränitz via lldb-commits
lldb-commits at lists.llvm.org
Wed Oct 9 04:25:48 PDT 2024
================
@@ -250,6 +250,9 @@ def delete_module_cache(path):
if is_configured("dsymutil"):
dotest_cmd += ["--dsymutil", config.dsymutil]
+if is_configured("make"):
+ dotest_cmd += ["--make", config.make]
+
----------------
weliveindetail wrote:
`--make` is added if `LLDB_TEST_MAKE` is defined explicitly or `LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS=ON`
https://github.com/llvm/llvm-project/pull/111531
More information about the lldb-commits
mailing list