From 4ecee55205b4968bb833f24efbbd4aec9c392a33 Mon Sep 17 00:00:00 2001 From: Jim Huang Date: Fri, 11 Oct 2024 01:53:15 +0800 Subject: [PATCH] Clarify LLVM version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f2a0546..fbcce99f 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ The tier-2 JIT compiler in `rv32emu` leverages LLVM for powerful optimization. Therefore, the target system must have [`LLVM`](https://llvm.org/) installed, with version 17 recommended. If `LLVM` is not installed, only the tier-1 JIT compiler will be used for performance enhancement. -* macOS: `brew install llvm@17` -* Ubuntu Linux / Debian: `sudo apt-get install llvm-17` +* macOS: `brew install llvm@18` +* Ubuntu Linux / Debian: `sudo apt-get install llvm-18` Build the emulator with experimental JIT compiler: ```shell