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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
