diff options
author | Andres Vieira <anvieiravazquez@gmail.com> | 2020-04-13 17:20:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-13 17:38:27 +0200 |
commit | e9c65b6566d3cc7fc6f8056cea5619d3ae87b340 (patch) | |
tree | c0efd4ec01395b6a1404357f0d9a365294206012 | |
parent | 824928050025b89498e3b740d2513fb65e655207 (diff) | |
download | serenity-e9c65b6566d3cc7fc6f8056cea5619d3ae87b340.zip |
Meta: Add Arch Linux (and derivatives) build instructions
This patch adds a one liner to install all the dependency packages
needed to compile and run Serenity on Arch Linux, Manjaro, etc
-rw-r--r-- | Documentation/BuildInstructions.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index f917ea6a33..33aeefbf66 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -13,6 +13,11 @@ sudo apt install build-essential curl libmpfr-dev libmpc-dev libgmp-dev e2fsprog sudo dnf install curl mpfr-devel libmpc-devel gmp-devel e2fsprogs @"C Development Tools and Libraries" @Virtualization ``` +**Arch Linux / Manjaro** +```bash +sudo pacman -S base-devel curl mpfr libmpc gmp e2fsprogs qemu qemu-arch-extra +``` + Ensure your gcc version is >= 8 with `gcc --version`. Otherwise, install it (on Ubuntu) with: ```bash sudo add-apt-repository ppa:ubuntu-toolchain-r/test |