Some versions of macOS report a different patch version for the system provided interpreter and libraries.
Details
- Reviewers
shafik arphaman sgraenitz davide stella.stamenova amccarth - Commits
- rG094e9b462f1c: Merging r367115, r367125, r367127, and r367153.
rL369903: Merging r367115, r367125, r367127, and r367153.
rG447ef830684b: [CMake] Loosen Python version check and ignore patch version
rLLDB367115: [CMake] Loosen Python version check and ignore patch version
rL367115: [CMake] Loosen Python version check and ignore patch version
Diff Detail
- Repository
- rL LLVM
Event Timeline
Interesting way to get from version to list! :)
Cosmetics: It looks like PYTHON_VERSION_STRING and PYTHONLIBS_VERSION_STRING are global and all others are local variables? Using lowercase names for locals makes it easier to see. As names are case-sensitive, it would also avoid the collision with the actual PYTHON_MAJOR/MINOR.
lldb/cmake/modules/LLDBConfig.cmake | ||
---|---|---|
205 ↗ | (On Diff #211559) | I think CMake would not shadow, but overwrite them in directory scope (which is root here, so everywhere except the cache). |
lldb/cmake/modules/LLDBConfig.cmake | ||
---|---|---|
203–204 ↗ | (On Diff #211606) | If this is the only reason, then maybe we could fix find_python_libs_windows to set the relevant variables instead (?) |
lldb/cmake/modules/LLDBConfig.cmake | ||
---|---|---|
203–204 ↗ | (On Diff #211606) | FindPythonLibs only sets PYTHONLIBS_VERSION_STRING, so we'd still have that to parse the major and minor version of that manually. It was a coin flip between keeping the parsing together and updating find_python_libs_windows. I'm happy to do either. |
lldb/cmake/modules/LLDBConfig.cmake | ||
---|---|---|
203–204 ↗ | (On Diff #211606) | Yea, I see what you mean. I think I'd go with changing find_python_libs_windows just to minimize the difference between the windows and non-windows branches of the python-finding code (and possible side-effects of those differences), but it's not a big deal either way... |
Export the same variables in find_python_libs_windows as FindPythonInterp and FindPythonLibs.
@amccarth I think this might explain the issues you were having last week. Without this patch, find_python_libs_windows is not setting the expected version variables. As a result, my check was complaining about a mismatch between the Python interpreter that LLVM found, and the libs that LLDB found, while LLDB was actually using a different Python interpreter, found by find_python_libs_windows.
lldb/cmake/modules/LLDBConfig.cmake | ||
---|---|---|
203–204 ↗ | (On Diff #211606) | Sure, sounds good! |
Thanks.
BTW, I tried this on windows, and it didn't blow up in my face, I think it should be relatively safe. I couldn't reproduce the problems that @amccarth was experiencing, so I don't know if it fixes that problem. It would be good to know whether it does, as we could cherry-pick this to the release branch in that case.
Sorry for the slow reply. I've been in a conference most of the week.
Since my problem tends to be a "just me" problem that doesn't affect the bots or apparently anyone else, I don't think a cherrypick is necessary.
By having only one version of Python on my machine, I was able to work around that problem. Unfortunately, I've been stuck on another problem since making that change (specifically, all dotest.py tests report "Python memory allocator called without holding the GIL" and crash). This, too, seems to be a "just me" thing, and I'm continuing to work on that this morning. Until I get that figured out, I don't think I want to perturb my environment further by re-installing a second version of Python. I suspect the other patch to eliminate multiprocessing from dotest.py might solve the GIL problem as well, but I want to know more first.
Just closing the loop. Regarding the "Python memory allocator called without holding the GIL" bugs: this is not a "just me" problem. It's for anyone who enables debug mode. This appears to be a test infrastructure problem, but it might be harmless. If I run in "release" mode, I get the same behavior as the Windows build bot.