From f784589c967f5b3bf5da83c04b2b3a3bea57b5f8 Mon Sep 17 00:00:00 2001 From: Xinyu Zeng <30414224+XinyuZeng@users.noreply.github.com> Date: Tue, 21 May 2024 20:46:13 +0800 Subject: [PATCH] Update LLVM instructions to use v15 --- lib/compiler-llvm/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/compiler-llvm/README.md b/lib/compiler-llvm/README.md index e425852aff0..124f5c48bbd 100644 --- a/lib/compiler-llvm/README.md +++ b/lib/compiler-llvm/README.md @@ -30,13 +30,13 @@ 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 14 +sudo bash /tmp/llvm.sh 15 ``` Or in macOS: ```bash -brew install llvm@14 +brew install llvm@15 ``` Or via any of the [pre-built binaries that LLVM offers][llvm-pre-built].