From 48c41fccee4872b2a46e4bed757a36bfb1d2174e Mon Sep 17 00:00:00 2001 From: Nikola Kotur Date: Wed, 26 Jun 2024 12:03:25 +0200 Subject: [PATCH] doc: add Arch Linux building instructions (#12090) --- doc/Building.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/Building.md b/doc/Building.md index 5ec619368..a3c77b800 100644 --- a/doc/Building.md +++ b/doc/Building.md @@ -44,6 +44,15 @@ sudo apk add autoconf automake bash cmake coreutils curl diffutils g++ \ procps-ng sdl2 tar unzip wget ``` +### Arch Linux + +Install the prerequisites using pacman: + +``` +run0 pacman -S base-devel ca-certificates cmake gcc-libs git \ + lua51-busted luarocks nasm ninja sdl2 unzip wget +``` + ### Debian/Ubuntu Install the prerequisites using APT: @@ -223,6 +232,7 @@ when the same compilation is being repeated. In other words, it will decrease build time when the sources have been built before. To install ccache use: * Alpine Linux: `sudo apk add ccache` +* Arch Linux: `run0 pacman -S ccache` * Debian/Ubuntu: `sudo apt-get install ccache` * Fedora/Red Hat: `sudo dnf install ccache` * macOS: `brew install ccache`