From bc7d3c647601d56332121403f1138d16317d2d98 Mon Sep 17 00:00:00 2001 From: Keanu Ashwell Date: Tue, 21 Feb 2023 05:51:54 +1000 Subject: [PATCH] docs: add dependency requirements for arch based systems (#3588) This pull request adds information on building neon on Arch based system such as Artix, Manjaro, Antergos, etc. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index f8bc1b7736..819693f1f3 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,11 @@ dnf install flex bison readline-devel zlib-devel openssl-devel \ libseccomp-devel perl clang cmake postgresql postgresql-contrib protobuf-compiler \ protobuf-devel ``` +* On Arch based systems, these packages are needed: +```bash +pacman -S base-devel readline zlib libseccomp openssl clang \ +postgresql-libs cmake postgresql protobuf +``` 2. [Install Rust](https://www.rust-lang.org/tools/install) ```