[Lldb-commits] [lldb] [lldb] Check for Python 'packaging' module at configuration time (PR #111747)

via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 9 12:16:33 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Stefan Gränitz (weliveindetail)

<details>
<summary>Changes</summary>

This module is used in various helper scripts since https://github.com/llvm/llvm-project/pull/93712

---
Full diff: https://github.com/llvm/llvm-project/pull/111747.diff


1 Files Affected:

- (modified) lldb/test/CMakeLists.txt (+1-1) 


``````````diff
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt
index 5ac474736eb63d..ceec782f19f4c7 100644
--- a/lldb/test/CMakeLists.txt
+++ b/lldb/test/CMakeLists.txt
@@ -12,7 +12,7 @@ endif()
 if(LLDB_ENFORCE_STRICT_TEST_REQUIREMENTS)
   message(STATUS "Enforcing strict test requirements for LLDB")
   # Lit uses psutil to do per-test timeouts.
-  set(useful_python_modules psutil)
+  set(useful_python_modules psutil packaging)
 
   if(NOT WIN32)
     # We no longer vendor pexpect and it is not used on Windows.

``````````

</details>


https://github.com/llvm/llvm-project/pull/111747


More information about the lldb-commits mailing list