Compiling zandronum-server on the Raspberry Pi
Posted: Thu Oct 31, 2019 10:24 am
Hello Everyone
After a few days of testing and compiling the zandronum-server on the pi is finally ready for you to compile. (tested on Raspberry PI4 with Rasphian Buster.)
What went wrong was the SQLite needed an update to the latest as well as the lemon code.
so here's how it works:
1. Update the pi to the latest:
1a. (optional) reboot (if needed)
2. Install these:
3. Make new folder and enter there:
4. Get repo from this website:
5. Make a new folder and enter there:
6. and make:
and there you have it. have fun with it. if you have any Problems let me know. or pull request and help out.
cheers
DoomJoshuaBoy
After a few days of testing and compiling the zandronum-server on the pi is finally ready for you to compile. (tested on Raspberry PI4 with Rasphian Buster.)
What went wrong was the SQLite needed an update to the latest as well as the lemon code.
so here's how it works:
1. Update the pi to the latest:
Code: Select all
sudo apt update && sudo apt upgradeCode: Select all
sudo rebootCode: Select all
sudo apt-get install build-essential zlib1g-dev libsdl1.2-dev libjpeg-dev \
nasm tar libbz2-dev libgtk2.0-dev cmake mercurial libfluidsynth-dev libgl1-mesa-dev \
libssl-dev gitCode: Select all
mkdir $HOME/zandronum-build && cd $HOME/zandronum-buildCode: Select all
git clone https://github.com/doomjoshuaboy/zandronum-rpi.gitCode: Select all
mkdir buildserver && cd buildserverCode: Select all
make clean; \
cmake -DCMAKE_BUILD_TYPE=Release -DSERVERONLY=ON -DNO_ASM=1 .. && \
make -j$(nproc) cheers
DoomJoshuaBoy