summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bertschinger <tahbertschinger@gmail.com>2023-12-19 16:38:47 -0700
committerKent Overstreet <kent.overstreet@linux.dev>2023-12-19 19:52:37 -0500
commitf06fd08067397adffd8362da4660602daf1a2473 (patch)
treeda123029681d5b37126a975fbe6430d90d505368
parent411eb2575effb82343b99889014d5b2082291318 (diff)
docs: add llvm-config dependency for arch, fedora
This adds on to 446ec6b092cc ("docs: mention that libclang is required"). That commit updated the dependency list for Debian. This adds the packages needed to get llvm-config for arch and fedora. Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--INSTALL.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 2928ed93..7197d2fc 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -34,13 +34,13 @@ Fedora: install the "Development tools" group along with:
dnf install -y libaio-devel libsodium-devel \
libblkid-devel libzstd-devel zlib-devel userspace-rcu-devel \
lz4-devel libuuid-devel valgrind-devel keyutils-libs-devel \
- findutils udev systemd-devel
+ findutils udev systemd-devel llvm-devel
```
Arch: install bcachefs-tools-git from the AUR.
Or to build from source, install build dependencies with
```shell
-pacman -S base-devel libaio keyutils libsodium liburcu zstd valgrind
+pacman -S base-devel libaio keyutils libsodium liburcu zstd valgrind llvm
```
Then, just `make && make install`