https://github.com/python/cpython/commit/ab73bcdf73fed5a23f2e2e37a63d6992f29479a9 commit: ab73bcdf73fed5a23f2e2e37a63d6992f29479a9 branch: main author: Miro HronĨok <[email protected]> committer: brandtbucher <[email protected]> date: 2024-05-16T12:09:52-04:00 summary:
Explain how to install LLVM on Fedora (GH-118983) 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]
