diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-04 08:52:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-04 08:52:54 +0200 |
| commit | c218631c56871a2336f8f94f1c2e17de1053eeff (patch) | |
| tree | 1855dd323f72c3a044e9a1c5d980d1de1dfd9378 /COMPILE.md | |
| parent | bd600a6135d2ef031a1cc2eeae5e285d12dfcb9e (diff) | |
| parent | 67c80f683e335413efcb3ee4590f671ccdf5aae8 (diff) | |
| download | box64-c218631c56871a2336f8f94f1c2e17de1053eeff.tar.gz box64-c218631c56871a2336f8f94f1c2e17de1053eeff.zip | |
Merge pull request #16 from Heasterian/main
New Tegra X1 compilation target
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)` |