Update readme file with install requirements

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-16 18:04:31 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-16 18:04:31 +0100
Commit 5d9b6eb76830f05329d59dac924dcff6d5d5930b (patch)
-rw-r--r-- README.md 8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
...
7
  
7
  
8
## Requirements
8
## Requirements
9
  
9
  
  
10
> ![IMPORTANT]
  
11
> You need to have `llvm` version 21 installed. You can install it with your
  
12
> package manager. Include paths in `Makefile` are specific for this version
  
13
> and have been tested on Void Linux and macOS.
  
14
  
10
```sh
15
```sh
  
16
# Void Linux
11
sudo xbps-install -S lldb21-devel clang llvm llvm-devel
17
sudo xbps-install -S lldb21-devel clang llvm llvm-devel
  
18
# macOS
  
19
brew install llvm
12
```
20
```
13
  
21
  
14
After you clone the repository build the debugger and a sample program with
22
After you clone the repository build the debugger and a sample program with
...