From 42078d2d98516f0f44799ce4b4a789dc8c2fc038 Mon Sep 17 00:00:00 2001 From: Simon Davies Date: Mon, 8 Jun 2026 13:57:42 +0100 Subject: [PATCH] docs: update clang/LLVM install instructions to v18 The README's setup instructions pinned clang/LLVM 16, but both the parent project's getting-started.md and CI (ci-setup-workflow) require and install clang 18. Bump the Ubuntu and Azure Linux install steps to 18 so the docs match the actual supported toolchain. Signed-off-by: Simon Davies --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5f17a0f..cd9e362 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,17 @@ For Ubuntu: ```bash wget https://apt.llvm.org/llvm.sh chmod +x ./llvm.sh - sudo ./llvm.sh 16 all - sudo ln -s /usr/lib/llvm-16/bin/clang-cl /usr/bin/clang-cl - sudo ln -s /usr/lib/llvm-16/bin/llvm-lib /usr/bin/llvm-lib + sudo ./llvm.sh 18 all + sudo ln -s /usr/lib/llvm-18/bin/clang-cl /usr/bin/clang-cl + sudo ln -s /usr/lib/llvm-18/bin/llvm-lib /usr/bin/llvm-lib ``` For Azure Linux: ```bash sudo dnf remove clang -y|| true - sudo dnf install clang16 -y - sudo dnf install clang16-tools-extra -y + sudo dnf install clang18 -y + sudo dnf install clang18-tools-extra -y ``` In addition on Linux you will need to install the `x86_64-unknown-none` target: