From e13d144e33703d91d55f8458c7b7ea85dc84963f Mon Sep 17 00:00:00 2001 From: RaspberryPiNews Date: Wed, 22 Sep 2021 02:30:20 +0000 Subject: [PATCH] Add dependencies script to building docs Signed-off-by: RaspberryPiNews --- docs/BUILDING.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/BUILDING.md b/docs/BUILDING.md index da1fb4f..2ed6f5e 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -41,6 +41,9 @@ Use this when the host architecture is not ARM. ```sh +# Install dependencies +ARM_PACKAGES_SUPPORTED=1 ./scripts/install-dependencies.sh + # Create Build Directory mkdir build && cd build @@ -63,6 +66,9 @@ This will most likely not compile by itself. You will want to enable either serv Use this when the host architecture is ARM. ```sh +# Install dependencies +./scripts/install-dependencies.sh + # Create Build Directory mkdir build && cd build @@ -71,3 +77,10 @@ cmake .. make -j$(nproc) && sudo make install cd ../ ``` + +## Docker Build +Alternatively, if you have Docker installed you can build Reborn in a Docker container. + +```sh +./scripts/ci/simulate.sh +``` -- 2.40.1