Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump llvm #3889

Merged
merged 1 commit into from
May 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/compiler-llvm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,20 @@ to native speeds.
## Requirements

The LLVM compiler requires a valid installation of LLVM in your system.
It currently requires **LLVM 12**.
It currently requires **LLVM 14**.


You can install LLVM easily on your Debian-like system via this command:

```bash
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
sudo bash /tmp/llvm.sh 12
sudo bash /tmp/llvm.sh 14
```

Or in macOS:

```bash
brew install llvm
brew install llvm@14
```

Or via any of the [pre-built binaries that LLVM offers][llvm-pre-built].
Expand Down