diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-06-17 15:52:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 15:52:07 (GMT) |
commit | 95737bbf18765a24b6585708588c9b707dc30d27 (patch) | |
tree | 948aa7c60a3561115f9bdbbb975ab9a1d647dd25 /Tools | |
parent | f4d301d8b99e5a001c89b0aea091b07b70c6354c (diff) | |
download | cpython-95737bbf18765a24b6585708588c9b707dc30d27.zip cpython-95737bbf18765a24b6585708588c9b707dc30d27.tar.gz cpython-95737bbf18765a24b6585708588c9b707dc30d27.tar.bz2 |
gh-120433: Mention ``chocolatey`` for installing llvm on Windows as an alternative option (#120434)
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/jit/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/jit/README.md b/Tools/jit/README.md index ae12666..73d2dee 100644 --- a/Tools/jit/README.md +++ b/Tools/jit/README.md @@ -41,6 +41,12 @@ Homebrew won't add any of the tools to your `$PATH`. That's okay; the build scri Install LLVM 18 [by searching for it on LLVM's GitHub releases page](https://github.com/llvm/llvm-project/releases?q=18), clicking on "Assets", downloading the appropriate Windows installer for your platform (likely the file ending with `-win64.exe`), and running it. **When installing, be sure to select the option labeled "Add LLVM to the system PATH".** +Alternatively, you can use [chocolatey](https://chocolatey.org): + +```sh +choco install llvm --version=18.1.6 +``` + ### Dev Containers If you are working CPython in a [Codespaces instance](https://devguide.python.org/getting-started/setup-building/#using-codespaces), there's no need to install LLVM as the Fedora 40 base image includes LLVM 18 out of the box. |