diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-06-09 23:13:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-09 17:13:14 +0200 |
| commit | ab5c42f0dcc90d1452103bd2dd763a095c8f0144 (patch) | |
| tree | 118b5ca9f8db3a881d0c2a91dd5d7793aac43c77 /docs/COMPILE.md | |
| parent | b19dc0db89ab4fdaa1a7c379e30d608a89f29163 (diff) | |
| download | box64-ab5c42f0dcc90d1452103bd2dd763a095c8f0144.tar.gz box64-ab5c42f0dcc90d1452103bd2dd763a095c8f0144.zip | |
[TRACE] Added support for libzydis v4.x and removed the in-house zydis header (#2720)
* [TRACE] Exclude non-trace build from relying on in-house Zydis header * [TRACE] Upgrade zydis to version 4.x * [TRACE] Update docs * [TRACE] Update CI * [TRACE] No reason to drop 3.x support
Diffstat (limited to 'docs/COMPILE.md')
| -rw-r--r-- | docs/COMPILE.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md index 14cba09d..050fff31 100644 --- a/docs/COMPILE.md +++ b/docs/COMPILE.md @@ -260,7 +260,7 @@ Add `-DCMAKE_BUILD_TYPE=RelWithDebInfo` option for an optimized build with debug #### Build with trace -To have a trace enabled build (***the interpreter will be slightly slower***), add `-DHAVE_TRACE=1`. You will need the [Zydis library](https://github.com/zyantific/zydis) in your `LD_LIBRARY_PATH` or in the system library folders at runtime to get x86 trace. Use version v3.2.1, as later versions have changed the API and no longer work with box64. +To have a trace enabled build (***the interpreter will be slightly slower***), add `-DHAVE_TRACE=1`. You will need the [Zydis library](https://github.com/zyantific/zydis) devel package installed (`apt install libzydis-dev` on Debian for example). #### Build DynaRec |