diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/USAGE.md | 5 | ||||
| -rw-r--r-- | docs/box64.pod | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index c41bbd39..cc41714a 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -239,6 +239,11 @@ Behavior with FillBlock is not available (FillBlock build Dynarec blocks and is * 0 : Dynarec will not wait for FillBlock to ready and use Interpreter instead (might speedup a bit massive multithread or JIT programs) * 1 : Dynarec will wait for FillBlock to be ready (Default) +#### BOX64_DYNAREC_GDBJIT * +The GDBJIT debugging support, only available with the compilation option GDBJIT=ON, enable it with gdb command: jit-reader-load /usr/local/lib/libbox64gdbjitreader.so. +* 0 : Dynarec will not generate GDBJIT debuginfo. (Default) +* 1 : Dynarec will generate GDBJIT debuginfo. + #### BOX64_DYNAREC_MISSING * Dynarec print the missing opcodes * 0 : not print the missing opcode (Default, unless DYNAREC_LOG>=1 or DYNAREC_DUMP>=1 is used) diff --git a/docs/box64.pod b/docs/box64.pod index e450a4bd..f57fdfac 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -367,6 +367,13 @@ Behavior with FillBlock is not available (FillBlock build Dynarec blocks and is * 0 : Dynarec will not wait for FillBlock to ready and use Interpreter instead (might speedup a bit massive multithread or JIT programs) * 1 : Dynarec will wait for FillBlock to be ready (Default) +=item B<BOX64_DYNAREC_GDBJIT>=I<0|1> + +The GDBJIT debugging support, only available with the compilation option GDBJIT=ON, enable it with gdb command: jit-reader-load /usr/local/lib/libbox64gdbjitreader.so. + + * 0 : Dynarec will not generate GDBJIT debuginfo. (Default) + * 1 : Dynarec will generate GDBJIT debuginfo. + =item B<BOX64_SSE_FLUSHTO0>=I<0|1> Handling of SSE Flush to 0 flags |