From f9d3e1fb1799ca27136874ffd77658bbe2f6e912 Mon Sep 17 00:00:00 2001 From: Kirill Podoprigora Date: Wed, 12 Jun 2024 19:48:53 +0000 Subject: [PATCH 1/2] add note about choco --- Tools/jit/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Tools/jit/README.md b/Tools/jit/README.md index ae126661c6ce25..84ecea7d084513 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.0 +``` + ### 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. From 44cfd164f579d013997180945217dd6608bd5291 Mon Sep 17 00:00:00 2001 From: Kirill Podoprigora Date: Mon, 17 Jun 2024 18:45:41 +0300 Subject: [PATCH 2/2] Update version to the latest one --- Tools/jit/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/jit/README.md b/Tools/jit/README.md index 84ecea7d084513..73d2deebbbc216 100644 --- a/Tools/jit/README.md +++ b/Tools/jit/README.md @@ -44,7 +44,7 @@ Install LLVM 18 [by searching for it on LLVM's GitHub releases page](https://git Alternatively, you can use [chocolatey](https://chocolatey.org): ```sh -choco install llvm --version=18.1.0 +choco install llvm --version=18.1.6 ``` ### Dev Containers