[Lldb-commits] [lldb] [lldb][windows] add support for out of PATH python.dll resolution (PR #162509)
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 10 04:39:10 PDT 2025
mstorsjo wrote:
> This, combined with `liblldb.dll` being delay loaded, allows to package `python.dll` with the `llvm` installer.
Just for reference - for llvm-mingw, we've been bundling a python install in our toolchain as well, but we've solved this slightly differently. We've just copied `python.dll` (but nothing else from the Python install) into the LLVM tool `bin` directory. That, together with the `LLDB_PYTHON_HOME` flag, has been enough for finding the bundled python install in a different directory. This solution is kinda neat though, and would allow skipping copying the `python.dll`.
https://github.com/llvm/llvm-project/pull/162509
More information about the lldb-commits
mailing list