Replies: 4 comments 6 replies
-
It isn't publicly available. |
Beta Was this translation helpful? Give feedback.
-
Generally speaking, Python ABI is not cross-compatible between minor versions. Although stable Python ABI does exist, LLDB does not stick to this subset. LLDB's build scripts will copy Python libs into the output directory if you set
I don't remember exactly how I came up with this set, so please don't ask. ... The other thing you'll have to worry about is compatibility with Linux system libraries, which various Python built-in modules depend on, starting with glibc. For this reason, I use the Python distribution from this project. |
Beta Was this translation helpful? Give feedback.
-
Not that I know of.
Standalone Python uses static linking to the maximum possible extent, so it depends only on shared libs available in most bare-bones Linux installations. |
Beta Was this translation helpful? Give feedback.
-
Thanks for all your help but I still have a question... How do you tell cmake not to take the Python from the system, but the stand alone build? For me, find_package() always resolves the system python. With
I don't understand where |
Beta Was this translation helpful? Give feedback.
-
Where can I find the pipeline (lldb-build) that builds the self-contained version of LLDB? I'd be interested in seeing how the self-contained version of LLDB is built.
Beta Was this translation helpful? Give feedback.
All reactions