More docs

This commit is contained in:
2026-05-10 16:34:54 +10:00
parent a7d55a9d33
commit bb3acc3f4a
22 changed files with 434 additions and 1 deletions

25
src/build_dependencies.md Normal file
View File

@@ -0,0 +1,25 @@
# Build dependencies
## macOS
```sh
xcode-select --install
```
Then, download UTHash [here](https://github.com/troydhanson/uthash/archive/master.zip), and copy the contents of the `include` folder to `/usr/local/include`:
```sh
sudo cp (/path/to/uthash-master)/include/* /usr/local/include
```
## Ubuntu/Debian
```sh
sudo apt install gcc git make uthash-dev
```
## Arch Linux
```sh
sudo pacman -S --needed gcc git make uthash
```