diff options
Diffstat (limited to 'COMPILE.md')
| -rwxr-xr-x | COMPILE.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/COMPILE.md b/COMPILE.md index 37014651..1a01ed3b 100755 --- a/COMPILE.md +++ b/COMPILE.md @@ -31,6 +31,22 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for TEGRA X1 + +Using a 64bits OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DTEGRAX1=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)` |