diff options
Diffstat (limited to 'docs/COMPILE.md')
| -rwxr-xr-x | docs/COMPILE.md | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md index df558027..67ad8187 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -80,6 +80,10 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for Other ARM64 Linux platforms + + `mkdir build; cd build; cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j$(nproc)` + #### for LoongArch Using a 64bits OS: @@ -96,9 +100,21 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` -#### for Other ARM64 Linux platforms +#### for PowerPC 64 LE - `mkdir build; cd build; cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j$(nproc)` +Using a 64bits OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DPPC64LE=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo +make -j4 +sudo make install +``` +If it's the first install, you also need: +``` +sudo systemctl restart systemd-binfmt +``` #### for x86_64 Linux |