[Lldb-commits] [lldb] 7890919 - [lldb] Check for Python 'packaging' module at configuration time (#111747)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 10 02:34:24 PDT 2024
Author: Stefan Gränitz
Date: 2024-10-10T11:34:19+02:00
New Revision: 7890919fb8323faf70fb16a05f91d4f602ce52fb
URL: https://github.com/llvm/llvm-project/commit/7890919fb8323faf70fb16a05f91d4f602ce52fb
DIFF: https://github.com/llvm/llvm-project/commit/7890919fb8323faf70fb16a05f91d4f602ce52fb.diff
LOG: [lldb] Check for Python 'packaging' module at configuration time (#111747)
This module is used in various helper scripts since
https://github.com/llvm/llvm-project/pull/93712
Added:
Modified:
lldb/test/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/test/CMakeLists.txt b/lldb/test/CMakeLists.txt
index 1abab96ba7bb1f..6449ac5a9247f6 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.
More information about the lldb-commits
mailing list