-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Missing Python DLL in Windows binary #74073
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
Comments
I think the assumption is that you must install Python first, which is not that difficult to do on Windows. But of course you must use the same version 3.10. |
@llvm/issue-subscribers-lldb Author: None (luc0x61)
[LLVM 17.0.6]
Note that `lldb` depends on `liblldb.dll`, which in turn depends on `python310.dll`: this last one is **missing** in Windows x64 binary files - i.e. `lldb` can't be run, out of the box.
The obvious way to run it is by providing the missing Python library.
|
Note that installing Python doesn't satisfy it in itself:
|
LLDB doesn't depend on Python 3.10 specifically. You can use any version between 3.6 and 3.11 (3.12 and newer have issues -- See #70453). Likely your CMake configuration chose this based on the python interpreter that it found on your machine (but I'm not 100% sure). Please see the instructions for building LLDB on Windows for more information: https://lldb.llvm.org/resources/build.html |
It seems that downloading a Python's official release variant of Credits: https://www.reddit.com/r/LLVM/comments/ziw1h4/lldb_doesnt_work_on_windows_10/ |
why it's not providing |
[LLVM 17.0.6]
Note that
lldb
depends onliblldb.dll
, which in turn depends onpython310.dll
: this last one is missing in Windows x64 binary files - i.e.lldb
can't be run, out of the box.The obvious way to run it is by providing the missing Python library.
The text was updated successfully, but these errors were encountered: