[Lldb-commits] [lldb] [lldb][windows] recommend building with Python 3.11 (PR #191159)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 9 07:05:20 PDT 2026
charles-zablit wrote:
> Maybe I should have been more verbose.
>
> For the intent of this change which was to recommend 3.11 on Windows:
>
> * Make sure we enforce>= 3.8 on all platforms.
> * Recommend 3.11 for Windows, don't take that codepath at all on any other platform.
>
> If you want to make >= 3.11 required on Windows:
>
> * Enforce >= 3.8 everywhere apart from Windows where it's >= 3.11
> * Delete the "recommended" code path entirely.
>
> I don't have a strong objection to the latter, but it is different than what you started with so I want to be clear what direction we're going.
I went with the second approach.
- >= 3.11 is enforced on Windows, >= 3.8 is enforced on other platforms.
- The `recommended` path is gone.
- The `build.rst` document has been updated to reflect the 3.11 requirement on Windows.
https://github.com/llvm/llvm-project/pull/191159
More information about the lldb-commits
mailing list