diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-11-22 21:53:58 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-11-22 21:53:58 +0100 |
| commit | 89112197d4d4bc35c24b573d92481cd4514149cc (patch) | |
| tree | 733737d28258b12d161535754817fde1a48acb89 /docs/COMPILE.md | |
| parent | 284345d5334df4d52fadca42c2eb0faa3d9b5761 (diff) | |
| download | box64-89112197d4d4bc35c24b573d92481cd4514149cc.tar.gz box64-89112197d4d4bc35c24b573d92481cd4514149cc.zip | |
[PPC64LE] Added option in CMakeList and paragraph in COMPILE.md (to be checked by ppc64le owners)
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 |