https://github.com/python/cpython/commit/45fbca983cee2b6038605d88a8e09b03220f8f0f commit: 45fbca983cee2b6038605d88a8e09b03220f8f0f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: brandtbucher <[email protected]> date: 2024-05-16T16:57:40Z summary:
[3.13] Explain how to install LLVM on Fedora (GH-119100) (cherry picked from commit ab73bcdf73fed5a23f2e2e37a63d6992f29479a9) Co-authored-by: Miro HronĨok <[email protected]> Co-authored-by: Erlend E. Aasland <[email protected]> files: M Tools/jit/README.md diff --git a/Tools/jit/README.md b/Tools/jit/README.md index 0f5aa9ce656bc9..ae126661c6ce25 100644 --- a/Tools/jit/README.md +++ b/Tools/jit/README.md @@ -21,6 +21,12 @@ chmod +x llvm.sh sudo ./llvm.sh 18 ``` +Install LLVM 18 on Fedora Linux 40 or newer: + +```sh +sudo dnf install 'clang(major) = 18' 'llvm(major) = 18' +``` + ### macOS Install LLVM 18 with [Homebrew](https://brew.sh): _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
