diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-18 09:09:40 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-18 09:09:40 +0100 |
| commit | 65992746d32fcaafe4e1b104b75cb2d4fc0dbcab (patch) | |
| tree | 448c1067a1415491bcd16b5ffb7224b868458752 /docs/COMPILE.md | |
| parent | cbd4c6408492e0d85317c94bd1d28252c014e46c (diff) | |
| download | box64-65992746d32fcaafe4e1b104b75cb2d4fc0dbcab.tar.gz box64-65992746d32fcaafe4e1b104b75cb2d4fc0dbcab.zip | |
Added RK3588 profile
Diffstat (limited to 'docs/COMPILE.md')
| -rwxr-xr-x | docs/COMPILE.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md index c6da6b9c..377a465f 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -27,6 +27,21 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for RK3588 / RK3588S + +Using a 64bit OS: +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DRK3588=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 Raspberry Pi 3 Warning, you need a 64bit OS: |