From 71ce2c5ba3689f258f69e22761f0e26a5a5575cc Mon Sep 17 00:00:00 2001 From: Ribbon Date: Wed, 3 Apr 2024 18:33:26 +0000 Subject: [PATCH] Add the build system download and setup instructions on CONTRIBUTING --- CONTRIBUTING.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d7c7c6a..5f94ac9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -75,7 +75,25 @@ We use an index to track the development priorities, you can find them on [this] ## Build System -You can find the Redox build system organization and commands on [this](https://doc.redox-os.org/book/ch08-06-build-system-reference.html) page. +To download the build system use the following commands: + +(You need to have [curl](https://curl.se/) installed on your system) + +```sh +curl -sf https://gitlab.redox-os.org/redox-os/redox/raw/master/bootstrap.sh -o bootstrap.sh +``` + +```sh +time bash -e bootstrap.sh +``` + +To start the compilation of the default recipes run the command below: + +```sh +make all +``` + +You can find the build system organization and commands on [this](https://doc.redox-os.org/book/ch08-06-build-system-reference.html) page. ## Developer FAQ