From be7005783011b581d6174f6eb6d4f51e49b5792f Mon Sep 17 00:00:00 2001 From: yukang Date: Thu, 8 Jul 2021 21:37:12 +0800 Subject: [PATCH] add notes for llvm --- lib/compiler-llvm/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/compiler-llvm/README.md b/lib/compiler-llvm/README.md index 524ebd3e7c4..7edc76c6cd0 100644 --- a/lib/compiler-llvm/README.md +++ b/lib/compiler-llvm/README.md @@ -24,13 +24,14 @@ to native speeds. ## Requirements The LLVM compiler requires a valid installation of LLVM in your system. -It currently requires **LLVM 10**. +It currently requires **LLVM 11**. You can install LLVM easily on your Debian-like system via this command: ```bash -bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" +wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh +sudo bash /tmp/llvm.sh 11 ``` Or in macOS: