Compare commits

...

2 Commits

Author SHA1 Message Date
RaspberryPiNews
f6cbd22f3f Merge pull request 'master' (#2) from TheBrokenRail/minecraft-pi-reborn:master into master
Reviewed-on: RaspberryPiNews/minecraft-pi-reborn#2
2021-11-12 16:07:00 +00:00
RaspberryPiNews
e13d144e33 Add dependencies script to building docs
Signed-off-by: RaspberryPiNews <raspberrypinews@noreply.thebrokenrail.org>
2021-09-22 02:30:20 +00:00

View File

@ -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
```