Skip to content

Commit 42078d2

Browse files
committed
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 <simongdavies@users.noreply.github.com>
1 parent fbb1197 commit 42078d2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ For Ubuntu:
2323
```bash
2424
wget https://apt.llvm.org/llvm.sh
2525
chmod +x ./llvm.sh
26-
sudo ./llvm.sh 16 all
27-
sudo ln -s /usr/lib/llvm-16/bin/clang-cl /usr/bin/clang-cl
28-
sudo ln -s /usr/lib/llvm-16/bin/llvm-lib /usr/bin/llvm-lib
26+
sudo ./llvm.sh 18 all
27+
sudo ln -s /usr/lib/llvm-18/bin/clang-cl /usr/bin/clang-cl
28+
sudo ln -s /usr/lib/llvm-18/bin/llvm-lib /usr/bin/llvm-lib
2929
```
3030

3131
For Azure Linux:
3232

3333
```bash
3434
sudo dnf remove clang -y|| true
35-
sudo dnf install clang16 -y
36-
sudo dnf install clang16-tools-extra -y
35+
sudo dnf install clang18 -y
36+
sudo dnf install clang18-tools-extra -y
3737
```
3838

3939
In addition on Linux you will need to install the `x86_64-unknown-none` target:

0 commit comments

Comments
 (0)