From 1d2c7e94540411b2847f4637942721f9f3860d60 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 29 Dec 2023 03:10:22 +0200 Subject: [PATCH] README: Add packages required by compilation in pacman --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 51a5013c..f7583bcd 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,9 @@ Each major component and library has its own subdirectory (kernel, userspace, li #### apt (tested on ubuntu 22.04) ```# apt install build-essential git ninja-build texinfo bison flex libgmp-dev libmpfr-dev libmpc-dev parted qemu-system-x86``` +#### pacman +```# pacman -S --needed base-devel git cmake ninja parted qemu-system-x86``` + > ***NOTE:*** You need cmake version of atleast 2.26. If you are using cmake that is not found from PATH, you can set the CMAKE\_COMMAND environment variable to point to the correct cmake binary. Or you can let build script download correct version of cmake if you don't have one. When you clone this reposity, make sure to also clone submodules. This can be done by cloning with the command ```git clone --recurse-submodules https://git.bananymous.com/bananymous/banan-os.git``` or if you have already cloned this repo, run ```git submodule init && git submodule update```.