mkdir build; cd build; cmake .. -DPANDORA=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
mkdir build; cd build; cmake .. -DPYRA=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
mkdir build; cd build; cmake .. -DGAMESHELL=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
a build for model 2, 3 and 4 can be done. Model 1 and 0 cannot (at least not with Dynarec, as they lack NEON support)
git clone https://github.com/ptitSeb/box86
cd box86
mkdir build; cd build; cmake .. -DRPI4=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo
make -j4
sudo make install
sudo systemctl restart systemd-binfmt
For Pi4. Change to RPI2 or RPI3 for other models.
mkdir build; cd build; cmake .. -DODROID=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
mkdir build; cd build; cmake .. -DRK3399=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j4
As most RK3399 device run AARCH64 OS, you'll need an armhf
multiarch env, and an armhf gcc: use sudo apt install gcc-arm-linux-gnueabihf
to install it.
mkdir build; cd build; cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
mkdir build; cd build; cmake .. -DLD80BITS=1 -DNOALIGN=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make
Alternatively, you can use the curses-bases ccmake (or any other gui frontend for cmake) to select wich platform to use interactively.
use ccache if you have it
Add -DUSE_CCACHE=1
if you have ccache (it's better if you plan to touch the sources)
have some debug info
The -DCMAKE_BUILD_TYPE=RelWithDebInfo
argument make a build that is both optimized for speed, and have debug information embedded. That way, if you have a crash or try to analyse performances, you'll have some symbols.
to have a Trace Enabled build
To have a trace enabled build (warning, it will be slower), add -DHAVE_TRACE=1
but you will need, at runtime, to have the Zydis library library in your LD_LIBRARY_PATH
or in the system lib folders.
to have ARM Dynarec
The Dynarec is only avaiable on ARM Cpu. Notes also that VFPv3 and NEON are required for the Dynarec. Activate it by using -DARM_DYNAREC=1
. Also, be sure to use -marm
in compilation flags (because many compileur use Thumb as default, and the dynarec will not work in this mode).
not building from a git clone
If you are not building from a git clone (for example downloading a release sources Zipped from github), you need to activate -DNOGIT=1
from cmake to be able to build (normal process include git sha1 of HEAD in the version that box86 print).
A few tests are included.
They can be launched with ctest
They are very basic and don't test much for now.