diff --git a/lib/compiler-llvm/README.md b/lib/compiler-llvm/README.md index 9dc0f90b1dc..a5e77ad85b2 100644 --- a/lib/compiler-llvm/README.md +++ b/lib/compiler-llvm/README.md @@ -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].