about summary refs log tree commit diff stats
path: root/docs/COMPILE.md
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-10-18 17:49:46 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-10-18 17:49:46 +0200
commit1698c822a5b76f1602edd0baef4301ab03f8bc27 (patch)
tree6184a9a60b6e9cecb6976f9d699a23b873b4199b /docs/COMPILE.md
parentc9177ec2596044fcfce619994a94c41228285bbe (diff)
downloadbox64-1698c822a5b76f1602edd0baef4301ab03f8bc27.tar.gz
box64-1698c822a5b76f1602edd0baef4301ab03f8bc27.zip
[DOCS] Added some infor about SAVE_MEM build option
Diffstat (limited to 'docs/COMPILE.md')
-rw-r--r--docs/COMPILE.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/COMPILE.md b/docs/COMPILE.md
index 7a48006d..c84bf958 100644
--- a/docs/COMPILE.md
+++ b/docs/COMPILE.md
@@ -202,7 +202,10 @@ To have a trace enabled build (***the interpreter will be slightly slower***), a
 #### To have ARM Dynarec

 

 Dynarec is only available on ARM (for the meantime), Activate it by using `-DARM_DYNAREC=1`.

-###### *Note: VFPv3 and NEON are required for Dynarec.*

+

+#### To have a build using less memory

+

+You can use ` -DSAVE_MEM` to have a build that will try to save some memory. It's, for now, only increasing the jumptable from 4 level to 5 levels. The added granularity avoid wasting space, but the 1 level more to the jumptable means there is on read from memory more when jumping between blocks.

 

 #### Not building from a git clone