diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-03 16:25:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-03 16:25:10 +0100 |
| commit | 78a336c092b9cf5ff48f970d670cb995f64c9e4f (patch) | |
| tree | 5a2206d3a0e1e6d06b702b9910c1f604cbdf207c /docs/COMPILE.md | |
| parent | 649c0f8055d6d7dbcfbd8ab8ed83dda6d125f8a0 (diff) | |
| download | box64-78a336c092b9cf5ff48f970d670cb995f64c9e4f.tar.gz box64-78a336c092b9cf5ff48f970d670cb995f64c9e4f.zip | |
Added ODROIDN2 Compile instruction (for #755)
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 20ac1e5f..07eb0eb3 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -84,6 +84,22 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for ODROID N2/N2+ + +Using a 64bit OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DODROIDN2=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 Snapdragon 845 Using a 64bit OS: |