diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-10-30 12:12:13 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-10-30 12:12:13 +0200 |
| commit | 1b19d8b909425503653a4d0a18d80989ef8f7666 (patch) | |
| tree | 83d4200f6a0e3f10f636855a898cea770c38e023 /docs/COMPILE.md | |
| parent | c2909c32abfc6eaada0001b129ca3dce70d61275 (diff) | |
| download | box64-1b19d8b909425503653a4d0a18d80989ef8f7666.tar.gz box64-1b19d8b909425503653a4d0a18d80989ef8f7666.zip | |
Added Phytium paragraph to COMPILE.md
Diffstat (limited to 'docs/COMPILE.md')
| -rwxr-xr-x | docs/COMPILE.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md index 17b3c2a2..df558027 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -64,6 +64,22 @@ sudo systemctl restart systemd-binfmt ``` +---- +#### for Phytium + +Using a 64bits OS: +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DPHYTIUM=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 LoongArch Using a 64bits OS: |