diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-11-24 13:07:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 13:07:42 +0100 |
| commit | 40c58241eac0603b87847ec60ac1ea2870e101ac (patch) | |
| tree | 9b26001a46df6403f691d022e0d304963ceab30b /docs/COMPILE.md | |
| parent | 5918fe4b5899c841cc171df8089b960f736d1308 (diff) | |
| parent | 194c346c18a11c754c788ec52c5fef388f163b9e (diff) | |
| download | box64-40c58241eac0603b87847ec60ac1ea2870e101ac.tar.gz box64-40c58241eac0603b87847ec60ac1ea2870e101ac.zip | |
Merge pull request #177 from mikptz/main
Add support for LX2160A based devices
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 67ad8187..55379ccc 100755 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -116,6 +116,22 @@ If it's the first install, you also need: sudo systemctl restart systemd-binfmt ``` +#### for LX2160A + +Using a 64bits OS: + +``` +git clone https://github.com/ptitSeb/box64 +cd box64 +mkdir build; cd build; cmake .. -DLX2160A=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo +make -j$(nproc) +sudo make install +``` +If it's the first install, you also need: +``` +sudo systemctl restart systemd-binfmt +``` + #### for x86_64 Linux `mkdir build; cd build; cmake .. -DLD80BITS=1 -DNOALIGN=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo; make -j$(nproc)` |