From d6d3a4e06495af3a65c8c2968b894cd13559b43b Mon Sep 17 00:00:00 2001 From: Faisal Arshed Date: Mon, 22 May 2023 03:37:44 +0500 Subject: [PATCH] Bump llvm (#3889) --- lib/compiler-llvm/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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].