diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-02-27 14:14:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-27 14:14:28 +0100 |
| commit | 24b781a6412e8b0ed22d2f59ae6b52304a69229b (patch) | |
| tree | 32b8e4f4a95c976a58dd94b2136099538142f15a /docs/COMPILE.md | |
| parent | 3ceff2ce2e6af3db1741411c3a47b1da8100ae1b (diff) | |
| parent | b932ad8c657576e21e1c9cc0e31acdd9c01fb640 (diff) | |
| download | box64-24b781a6412e8b0ed22d2f59ae6b52304a69229b.tar.gz box64-24b781a6412e8b0ed22d2f59ae6b52304a69229b.zip | |
Merge pull request #199 from Alexmitter/main
Add initial RISCV support
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 e456dc3a..0238a040 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -100,6 +100,22 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for RISCV + +Using a 64bits OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DRV64=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 PowerPC 64 LE Using a 64bits OS: |