diff options
| author | zhaozhen <345865759@163.com> | 2021-09-27 22:21:49 +0800 |
|---|---|---|
| committer | zhaozhen <345865759@163.com> | 2021-09-27 22:21:49 +0800 |
| commit | 837f7edd55583274c7c163296a45208ebecbf284 (patch) | |
| tree | 2c921e2c59bbd8f121ace50e69f35558b53a8627 /docs/COMPILE.md | |
| parent | 8da46ee30516cfffdfd1bb86c69eec285ae2e806 (diff) | |
| download | box64-837f7edd55583274c7c163296a45208ebecbf284.tar.gz box64-837f7edd55583274c7c163296a45208ebecbf284.zip | |
additional info for compilation document
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 d12fd2a0..e15bebb2 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -47,6 +47,22 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for LoongArch + +Using a 64bits OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DLARCH64=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 Other ARM64 Linux platforms `mkdir build; cd build; cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j$(nproc)` |