diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-05 13:40:50 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-05 13:40:50 +0200 |
| commit | 7535b4ac61882e208dba0ef36e38e0014cf864e1 (patch) | |
| tree | d9e919f14b77752d93b2f615dbfe6b8077977b66 | |
| parent | 3bab7d6c5365c6c46c97be27b807d077aba276ce (diff) | |
| download | box64-7535b4ac61882e208dba0ef36e38e0014cf864e1.tar.gz box64-7535b4ac61882e208dba0ef36e38e0014cf864e1.zip | |
Small update COMPILE.md
| -rwxr-xr-x | COMPILE.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/COMPILE.md b/COMPILE.md index 1a01ed3b..d12fd2a0 100755 --- a/COMPILE.md +++ b/COMPILE.md @@ -73,11 +73,11 @@ The `-DCMAKE_BUILD_TYPE=RelWithDebInfo` argument makes a build that is both opti *To have a Trace Enabled build* -To have a trace enabled build ( ***it will be slower***), add `-DHAVE_TRACE=1` but you will need, at runtime, to have the [Zydis library](https://github.com/zyantific/zydis) library in your `LD_LIBRARY_PATH` or in the system library folders. +To have a trace enabled build ( ***the interpretor will be slightly slower***), add `-DHAVE_TRACE=1` but you will need, at runtime, to have the [Zydis library](https://github.com/zyantific/zydis) library in your `LD_LIBRARY_PATH` or in the system library folders. *To have ARM Dynarec* -The Dynarec is only available on the ARM architecture(Right now, anyways.). Notes also that VFPv3 and NEON are required for the Dynarec. Activate it by using `-DARM_DYNAREC=1`. Also, be sure to use `-marm` in compilation flags (because many compileur use Thumb as default, and the dynarec will not work in this mode). +The Dynarec is only available on the ARM architecture(Right now, anyways.). Notes also that VFPv3 and NEON are required for the Dynarec. Activate it by using `-DARM_DYNAREC=1`. *Not building from a git clone* |