-
Notifications
You must be signed in to change notification settings - Fork 12.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[lldb] Check for Python 'packaging' module at configuration time #111747
[lldb] Check for Python 'packaging' module at configuration time #111747
Conversation
This module is used in various helper scripts since llvm#93712
@llvm/pr-subscribers-lldb Author: Stefan Gränitz (weliveindetail) ChangesThis module is used in various helper scripts since #93712 Full diff: https://github.com/llvm/llvm-project/pull/111747.diff 1 Files Affected:
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.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could have sworn I added it here, but apparently not. Thanks!
No worries, we have it now. Thanks for the quick review! |
…m#111747) This module is used in various helper scripts since llvm#93712
…m#111747) This module is used in various helper scripts since llvm#93712
…m#111747) This module is used in various helper scripts since llvm#93712
…m#111747) This module is used in various helper scripts since llvm#93712
…m#111747) This module is used in various helper scripts since llvm#93712
…m#111747) This module is used in various helper scripts since llvm#93712
This module is used in various helper scripts since #93712