Uh oh!
There was an error while loading. Please reload this page.
gh-120433: Mention chocolatey for installing llvm on Windows as an alternative option - #120434
Conversation
cc @savannahostrowski |
This is the run: https://github.com/python/cpython/actions/runs/9489036340 I don't know why, but it's because the workflow file used for the run doesn't contain the Which were added in #119147 and are still in |
Eclips4
commented
Jun 12, 2024
I've created #120435 to try to fix that. name: JITon:
pull_request:
paths:
- '!**/*.md'
- '!**/*.ini'
- '**jit**'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
- '!Python/perf_jit_trampoline.c'push:
paths:
- '!**/*.md'
- '!**/*.ini'
- '**jit**'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
- '!Python/perf_jit_trampoline.c' |
hugovk
commented
Jun 12, 2024
So it does... I missed them because the PR added them to the end of the lists, not the top: 🤔 - '**jit**'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
+ - '!Python/perf_jit_trampoline.c'+ - '!**/*.md'+ - '!**/*.ini'
push:
paths:
- '**jit**'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
+ - '!Python/perf_jit_trampoline.c'+ - '!**/*.md'+ - '!**/*.ini'I wonder why they're different. |
| Alternatively, you can use [chocolatey](https://chocolatey.org): | ||
| ```sh | ||
| choco install llvm --version=18.1.0 |
There was a problem hiding this comment.
Is it possible to specify just --version=18, without minor and patch releases? Other tools do not specify exact version.
There was a problem hiding this comment.
Is it possible to specify just
--version=18, without minor and patch releases? Other tools do not specify exact version.
Unfortunately, no.
We can also omit --version and the latest stable release will be installed. What do you think about that?
There was a problem hiding this comment.
So, here's the list of available versions:
llvm 18.1.6 [Approved] Downloads cached for licensed users
llvm 18.1.5 [Approved] Downloads cached for licensed users
llvm 18.1.4 [Approved] Downloads cached for licensed users
llvm 18.1.3 [Approved]
llvm 18.1.2 [Approved]
llvm 18.1.0 [Approved] Downloads cached for licensed users
Which one do you prefer? The latest one?
sobolevn
left a comment
There was a problem hiding this comment.
We would have to update it from time to time, but there's no other way, I guess ;)
Thanks!
…s as an alternative option (pythonGH-120434) (cherry picked from commit 95737bb) Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
GH-120651 is a backport of this pull request to the 3.13 branch. |
…s as an alternative option (python#120434)
…s as an alternative option (python#120434)
…s as an alternative option (python#120434)
chocolateyinTools/jit/README.md#120433