Scroll to navigation

BOX64(1) Manual BOX64(1)

NAME

box64 - Linux Userspace x86_64 Emulator with a twist

SYNOPSIS

box64 [--help] [--version] executable

DESCRIPTION

Box64 lets you run x86_64 Linux programs (such as games) on non-x86_64 Linux systems, like ARM (host system needs to be 64-bit little-endian). Since Box64 uses the native versions of some "system" libraries, like libc, libm, SDL, and OpenGL, it's easy to integrate and use with most applications, and performance can be surprisingly high in many cases. Box64 integrates with DynaRec (dynamic recompiler) for the ARM64 platform, providing a speed boost between 5 to 10 times faster than using only the interpreter.

OPTIONS

Print box64 help and quit.
Print box64 version and quit.

BRIEF USAGE

There are many environment variables to control Box64's behaviour. In addition to environment variables, Box64 also looks for 2 places for rcfile: /etc/box64.box64rc and ~/.box64rc, in the format of .ini files. Settings priority: ~/.box64rc > /etc/box64.box64rc > environment variables. Example:

    [factorio]
    BOX64_DYNAREC_SAFEFLAGS=0
    BOX64_DYNAREC_BIGBLOCK=2
    BOX64_DYNAREC_FORWARD=1024
    BOX64_DYNAREC_CALLRET=1

The special "[*]" section defines shared rcfile options for all applications. More specific sections override only the options they define themselves.

ENVIRONMENT VARIABLES

Add extras to the needed libraries list, rarely needed.

 * XXXX : Add library XXXX to the needed libraries list. 
 * XXXX:YYYY:ZZZZ : Add library XXXX, YYYY and ZZZZ to the needed libraries list.
    
Expose AES capabilities. Available in WowBox64.

 * 0 : Do not expose AES capabilities. 
 * 1 : Expose AES capabilities. [Default]
    
Allow missing libraries to be ignored.

 * 0 : Do not allow missing libraries. [Default]
 * 1 : Allow missing libraries.
    
Specify the architecture in rcfiles to which the current entry applies. This option only takes effect when used inside rcfiles.

 * `arm64` : Only apply current entry for AArch64. 
 * `la64` : Only apply current entry for LoongArch64. 
 * `rv64` : Only apply current entry for RISC-V. 
 * `<empty>` : Apply current entry for all architectures, will be replaced by more specific entries. [Default]
    
Arguments to pass to the guest program, only valid if there is no existing arguments.

 * XXXX : Pass argument XXXX to the program. 
 * XXXX YYYY ZZZZ : Pass arguments XXXX, YYYY and ZZZZ to the guest program.
    
Expose AVX extension to CPUID and cpuinfo file. Default value is 2 on Arm64 and LoongArch64 because it's fully implemented in DynaRec, 0 otherwise. Available in WowBox64.

 * 0 : Do not expose AVX capabilities. 
 * 1 : Expose AVX, BMI1, F16C and VAES extensions to CPUID and cpuinfo file. 
 * 2 : All in 1, plus AVX2, BMI2, FMA, ADX,VPCLMULQDQ and RDRAND extensions.
    
Path to the bash executable.

 * XXXX : Use bash executable at path XXXX.
    
Specify the CPU type to emulate. Available in WowBox64.

 * 0 : Emulate a Intel CPU Model. [Default]
 * 1 : Emulate a AMD CPU Model.
    
Use a dummy crash handler or not.

 * 0 : Use emulated crashhandler.so library if needed. 
 * 1 : Use an internal dummy (empty) crashhandler.so library. [Default]
    
Enable or disable the logging of dlsym errors.

 * 0 : Disable the logging of dlsym errors. [Default]
 * 1 : Enable the logging of dlsym errors.
    
Dump elfloader debug information. Available in WowBox64.

 * 0 : Do not dump elfloader debug information. [Default]
 * 1 : Dump elfloader debug information.
    
Enable/disable the Dynamic Recompiler (a.k.a DynaRec). This option defaults to 1 if it's enabled in the build options for a supported architecture. Available in WowBox64.

 * 0 : Disable DynaRec. 
 * 1 : Enable DynaRec.
    
Generate aligned atomics only (only available on Arm64 for now). Available in WowBox64.

 * 0 : Generate unaligned atomics handling code. [Default]
 * 1 : Generate aligned atomics only, which is faster and smaller code size, but will cause SIGBUS for LOCK prefixed opcodes operating on unaligned data addresses.
    
Enable building bigger DynaRec code blocks for better performance. Available in WowBox64.

 * 0 : Do not try to build block as big as possible, suitable for programs using lots of threads and JIT, like Unity. 
 * 1 : Build DynaRec block as big as possible. 
 * 2 : Build DynaRec block bigger, do not stop when block overlaps, but only for blocks in elf memory. [Default]
 * 3 : Build DynaRec block bigger, do not stop when block overlaps, for all type of memory, useful for wine programs.
    
Detect MonoBleedingEdge and apply conservative settings (Linux only).

 * 0 : Do not detect MonoBleedingEdge. 
 * 1 : Detect MonoBleedingEdge and apply BOX64_DYNAREC_BIGBLOCK=0 BOX64_DYNAREC_STRONGMEM=1 when detected. [Default]
    
Optimize CALL/RET opcodes. Available in WowBox64.

 * 0 : Do not optimize CALL/RET, use jump table. [Default]
 * 1 : Try to optimize CALL/RET, skipping the jump table when possible. 
 * 2 : Try to optimize CALL/RET, skipping the jump table when possible, adding code to handle return to dirty/modified block. Does not work on WowBox64.
    
Optimize CALL/RET further with Secondary Entry Points (SEP). Has no effect if CALLRET is not enabled Available in WowBox64.

 * 0 : Do not add SEP at CALLRET return 
 * 1 : Add SEP at CALLRET return, on memory that are from known binary files [Default]
 * 2 : Add SEP at CALLRET return for all type of memory.
    
Enable or disable the use of deferred flags. Available in WowBox64.

 * 0 : Disable the use of deferred flags. 
 * 1 : Enable the use of deferred flags. [Default]
    
Allow continue running a block that is unprotected and potentially dirty.

 * 0 : Do not allow continue running a block that is unprotected and potentially dirty. [Default]
 * 1 : Allow continue to run a DynaBlock that write data in the same page as code. It can gets faster in loading time of some game but can also get unexpected crashes. 
 * 2 : Will also, when it detects a HotPage, flag that page as NEVERCLEAN, and so it will not be write protected but blocks built from that page will always be tested. It can be faster that way (but some SMC case might not be trapped).
    
Disable detection of hot page (where code is executed and data written at the same time).

 * 0 : Detect hot page [Default]
 * 1 : Do not detect hot page
    
Enable or disable the generation of division-by-zero exception. Available in WowBox64.

 * 0 : Do not generate the division-by-zero exception. [Default]
 * 1 : Generate the division-by-zero exception.
    
Enable DynaRec dump. Available in WowBox64.

 * 0 : Do not dump DynaRec blocks. [Default]
 * 1 : Dump DynaRec blocks. 
 * 2 : Dump DynaRec blocks with some colors.
    
Dump DynaRec blocks in the specified range. Available in WowBox64.

 * 0xXXXXXXXX-0xYYYYYYYY : Define the range where DynaBlock gets dumped (inclusive-exclusive).
    
Enable or disable fast NaN handling. Available in WowBox64.

 * 0 : Precisely emulate the -NaN generation like on x86. 
 * 1 : Do not do anything special with -NAN generation, faster. [Default]
    
Enable or disable fast rounding. Available in WowBox64.

 * 0 : Generate float/double -> int rounding and use current rounding mode for float/double computation like on x86. 
 * 1 : Do not do anything special with edge case rounding, faster. [Default]
 * 2 : Generate float/double -> int rounding using current rounding mode for float/double computation like on x86, but use fast int -> float/double conversion.
    
Define max allowed forward value when building block. Available in WowBox64.

 * 0 : No forward value. When current block ends, do not try to go further even if there are previous forward jumps. 
 * 128 : Allow up to 128 bytes of gap between end of the block and the next forward jump. [Default]
 * XXXX : Allow up to XXXX bytes of gap between end of the block and the next forward jump.
    
The GDBJIT debugging support, only available on build with `-DGDBJIT=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. 
 * 2 : DynaRec will generate detailed GDBJIT debuginfo with internal state. 
 * 3 : DynaRec will register detailed GDBJIT debuginfo only for DynaBlocks that the guest program trap into, greatly improving performance. 
 * 0xXXXXXXX-0xYYYYYYY : Define the range where DynaRec will generate detailed GDBJIT debuginfo with internal state.
    
Disable or enable DynaRec logs. Available in WowBox64.

 * 0 : Disable DynaRec logs. [Default]
 * 1 : Enable minimal DynaRec logs. 
 * 2 : Enable debug level DynaRec logs. 
 * 3 : Enable verbose level DynaRec logs.
    
Print missing opcodes. Available in WowBox64.

 * 0 : Do not print the missing opcode. [Default]
 * 1 : Print missing opcodes. 
 * 2 : Print the fallback to scalar opcodes, only valid on RISC-V.
    
Enable or disable the use of native flags. Available in WowBox64.

 * 0 : Do not use native flags. 
 * 1 : Use native flags when possible. [Default]
    
Disable optional host extensions.

 * 0 : Disable nothing. [Default]
 * 1 : Disable all the optional extensions. 
 * xxx,yyy,zzz : Disable selected optional extensions, choices are Arm: `crc32,pmull,aes,atomics,sha1,sha2,uscat,flagm,flagm2,frintts,afp,rndr`, LoongArch: `lasx,lbt,frecipe,lam_bh,lamcas,scq`, and RISC-V: `zba,zbb,zbc,zbs,vector,xtheadba,xtheadbb,xtheadbs,xtheadmemidx,xtheadmempair,xtheadcondmov`.
    
Enable x86 PAUSE emulation, may help the performance of spinlocks. Available in WowBox64.

 * 0 : Ignore x86 PAUSE instruction. [Default]
 * 1 : Use YIELD to emulate x86 PAUSE instruction. 
 * 2 : Use WFI to emulate x86 PAUSE instruction. 
 * 3 : Use SEVL+WFE to emulate x86 PAUSE instruction.
    
Generate map file for Linux perf tool.

 * 0 : DynaRec will not generate perf map. [Default]
 * 1 : DynaRec will generate perf map.
    
Purge DynaBlocks that haven't been executed recently, based on tick age threshold (BOX64_DYNAREC_PURGE_AGE).

 * 0 : DynaRec will not purge old unused DynaBlocks. [Default]
 * 1 : DynaRec will purge old unused DynaBlocks based on tick age.
    
Tick age threshold for DynaBlock purging (requires BOX64_DYNAREC_PURGE=1).

 * 4096 : Default age threshold. [Default]
 * XXXX : Custom age threshold (range: 10-65536).
    
Behaviour of flags emulation on CALL/RET opcodes and other edge cases. Available in WowBox64.

 * 0 : Treat CALL/RET as if it never needs any flags. 
 * 1 : Most of RETs will need flags, most of CALLs will not. [Default]
 * 2 : All CALL/RET will need flags. All edge cases are also handled.
    
Enable the emulation of x86 strong memory model. Available in WowBox64.

 * 0 : Do not try anything special. [Default]
 * 1 : Enable some memory barriers when writing to memory to emulate the x86 strong memory model in a limited way. 
 * 2 : All in 1, plus memory barriers on SIMD instructions. 
 * 3 : All in 2, plus more memory barriers on a regular basis. 
 * 4 : Mimic x86 TSO similarly to QEMU's approach, for evaluation purposes.
    
Enable or disable libtbb detection.

 * 0 : Do not detect libtbb. 
 * 1 : Detect libtbb and apply conservative settings. [Default]
    
Enable DynaRec execution comparison with the interpreter, very slow, only for testing. Available in WowBox64.

 * 0 : No comparison. [Default]
 * 1 : Each opcode runs on interpreter and on DynaRec, regs and memory are compared and printed when they differ. 
 * 0xXXXXXXXX-0xYYYYYYYY : Define the range where DynaRec is tested (inclusive-exclusive).
    
Enable deduplication of IP address where COSIM find a difference. Available in WowBox64.

 * 0 : Show all addresses in error. [Default]
 * 1 : Show address in error only 1 time, even if dump might differs.
    
Do not dump test code when BOX64_DYNAREC_DUMP is enabled. Available in WowBox64.

 * 0 : Dump test code. 
 * 1 : Do not dump test code. [Default]
    
Enable or disable DynaRec trace.

 * 0 : Do not trace DynaRec blocks. [Default]
 * 1 : Trace DynaRec blocks, will slow down the program a lot and generates huge logs.
    
Use volatile metadata parsed from PE files, only valid for 64bit Windows games.

 * 0 : Do not use volatile metadata. 
 * 1 : Use volatile metadata, which will guide Box64 for better strong memory emulation. [Default]
    
Wait or not for the building of a DynaRec code block to be ready. Available in WowBox64.

 * 0 : Do not wait and use interpreter instead, might speedup a bit on massive multithread or JIT programs. 
 * 1 : Wait for a DynaRec code block to be ready. [Default]
    
Tweak the memory barriers to reduce the performance impact by strong memory emulation. Available in WowBox64.

 * 0 : Use regular safe barrier. 
 * 1 : Use weak barriers to have more performance boost. [Default]
 * 2 : All in 1, plus disable the last write barriers.
    
Force the use of float/double for x87 emulation. Available in WowBox64.

 * 0 : Try to use float when possible for x87 emulation. [Default]
 * 1 : Only use Double for x87 emulation. 
 * 2 : Check Precision Control low precision on x87 emulation.
    
Allow the use of DynaRec in Signal Handlers.

 * 0 : Allow the use of DynaRec in signal handlers. [Default]
 * 1 : Only use the Interpreter for signal handlers (as it was in v0.3.8 and earlier).
    
Enable/disable the Dynamic Recompiler Cache (a.k.a DynaCache). This option defaults to 2 (to read cache if present but not generate any). DynaCache writes files to the home folder by default, and keeps its folder below BOX64_DYNACACHE_LIMIT when generating new cache files.

 * 0 : Disable DynaCache. 
 * 1 : Enable DynaCache. [Default]
 * 2 : Use DynaCache files if present, but do not generate new one.
    
Set the folder for DynaCache files. Default is $XDG_CACHE_HOME/box64 or $HOME/.cache/box64 if $XDG_CACHE_HOME is not set.

 * XXXX : Use folder XXXX for DynaCache files.
    
Maximum size, in MiB, for the DynaCache folder. When the limit is exceeded, invalid DynaCache files are removed first, then the oldest valid files are removed if needed. Default size is 2048MiB.

 * 0 : Do not limit the DynaCache folder size. 
 * XXXX : Keep the DynaCache folder below XXXX MiB by removing invalid cache files first, then the oldest valid cache files. 
 * 2048 : A size of 2048 MiB is the default value. [Default]
    
Compress or not DynaCache files on disk

 * 0 : Do not compress dynacache files 
 * 1 : Compress dynacache files using Zlib with fastest compression. [Default]
 * 2 : Compress dynacache files using ZLib with default compression.
    
Minimum size, in KB, for a DynaCache to be written to disk. Default size is 350KB

 * XXXX : Set a minimum size of XXXX KB of DynaRec code to write the dynacache to disk. Will not be saved to disk else. 
 * 350 : A size of 350 KB is the default value. [Default]
    
Force the use of emulated libraries.

 * XXXX : Force the use of emulated library XXXX. 
 * XXXX:YYYY:ZZZZ : Force the use of emulated libraries XXXX, YYYY and ZZZZ.
    
Add an environment variable.

 * XXXX=yyyy : Add environment variable XXXX with value yyyy.
    
Add an environment variable.

 * XXXX=yyyy : Add environment variable XXXX with value yyyy.
    
Just exit, do not try to run the program.

 * 0 : Does nothing. [Default]
 * 1 : Just exit.
    
Fix 64bit inodes.

 * 0 : Do not fix 64bit inodes. [Default]
 * 1 : Fix 64bit inodes.
    
Force symbols from BOX64_LD_PRELOAD libraries to be resolved by RTLD_NEXT.

 * 0 : Do nothing. [Default]
 * 1 : Force symbols from BOX64_LD_PRELOAD libraries to be resolved by RTLD_NEXT.
    
Ignore INT3 instructions.

 * 0 : Trigger a TRAP signal if a handler is present. [Default]
 * 1 : Skip the opcode silently.
    
Prepend arguments to the command line.

 * XXXX : Prepend argument XXXX to the program. 
 * XXXX YYYY ZZZZ : Prepend arguments XXXX, YYYY and ZZZZ to the guest program.
    
Add --in-process-gpu argument to the guest program.

 * 0 : Does nothing. [Default]
 * 1 : Add --in-process-gpu argument to the guest program.
    
Launch gdb or not for SIGSEGV, SIGILL, and SIGBUS.

 * 0 : Just print the message when the signal is caught. [Default]
 * 1 : Launch gdb when a SIGSEGV, SIGILL or SIGBUS signal is trapped, attached to the offending process and go in an endless loop, waiting. Inside gdb, you need to find the correct thread yourself (the one with `my_box64signalhandler` in its stack), then probably need to `finish` 1 or 2 functions (inside `usleep(..)`) and then you'll be in `my_box64signalhandler`, just before the printf of the Segfault message. Then `set waiting=0` to exit the infinite loop. 
 * 2 : Launch gdbserver when a SIGSEGV, SIGILL or SIGBUS signal is trapped, attached to the offending process, and go in an endless loop, waiting. Use `gdb /PATH/TO/box64` and then `target remote 127.0.0.1: 1234` to connect to the gdbserver (or use actual IP if not on the machine). After that, the procedure is the same as with `BOX64_JITGDB=1`. 
 * 3 : Launch lldb when a SIGSEGV, SIGILL or SIGBUS signal is trapped, attached to the offending process and go in an endless loop, waiting.
    
Detect libjvm and apply conservative settings.

 * 0 : Does nothing. 
 * 1 : Detect libjvm, and apply BOX64_DYNAREC_BIGBLOCK=0 BOX64_DYNAREC_STRONGMEM=1 BOX64_SSE42=0 when detected. [Default]
    
Path to look for x86_64 libraries.

 * XXXX : Add path XXXX to the library path.
    
Force loading libraries with the binary.

 * XXXX : Force the loading of library XXXX. 
 * XXXX:YYYY : Force the loading of libraries XXXX and YYYY.
    
Detect libcef and apply BOX64_MALLOC_HACK settings.

 * 0 : Does nothing. [Default]
 * 1 : Detect libcef, and apply BOX64_MALLOC_HACK=2 if detected.
    
Set the name for libGL.

 * libXXXX : Set the name for libGL to libXXXX. 
 * /path/to/libXXXX : Set the name and path for libGL to /path/to/libXXXX, you can also use SDL_VIDEO_GL_DRIVER.
    
Set the address where the program is loaded, only active for PIE guest programs.

 * 0xXXXXXXXX : Set the address where the program is loaded.
    
Enable or disable Box64 logs, default value is 0 if stdout is not terminal, 1 otherwise. Available in WowBox64.

 * 0 : Disable Box64 logs. 
 * 1 : Enable minimal Box64 logs. 
 * 2 : Enable debug level Box64 logs. 
 * 3 : Enable verbose level Box64 logs.
    
Behaviour when hooking malloc operators.

 * 0 : Don't allow malloc operator to be redirected, rewriting code to use regular function. [Default]
 * 1 : Allow malloc operator to be redirected. 
 * 2 : Like 0, but track special mmap/free (some redirected functions are inlined and cannot be redirected).
    
Maximum CPU cores exposed. Available in WowBox64.

 * 0 : Use the actual number of CPU cores. [Default]
 * XXXX : Use XXXX CPU cores.
    
Force 32-bit compatible memory mappings on 64-bit programs that run 32-bit code (like Wine WOW64), can improve performance.

 * 0 : Do not force 32-bit memory mappings. 
 * 1 : Force 32-bit memory mappings. [Default]
    
Disable the Box64 banner. Available in WowBox64.

 * 0 : Show the Box64 banner. 
 * 1 : Do not show the Box64 banner.
    
Forbid DynaBlock creation in the address range specified, helpful for debugging behaviour difference between DynaRec and Interpreter. Available in WowBox64.

 * 0xXXXXXXXX-0xYYYYYYYY : Define the range where DynaBlock creation is forbidden (inclusive-exclusive).
    
Remove NoDynaRec range after a delay. Available in WowBox64.

 * 0 : Do not remove NoDynaRec range. [Default]
 * 1 : Remove the NoDynaRec range once 2 threads have been created.
    
Remove Architecture metadata from DynaRec blocks (used on signal). Available in WowBox64.

 * 0 : Generate all architecture metadata for each blocks, including x87/mmx/SSE/AVX regs tracking. Will use some more memory. [Default]
 * 1 : Generate only essential metadata for each blocks (flags, alignments), saving some memory, but some encrypted software might fail. 
 * 2 : Do not generate metadata for blocks. Saving a bit more memory but might fail on signal handling.
    
Do not load wrapped GTK libraries.

 * 0 : Load wrapped GTK libraries. [Default]
 * 1 : Do not load wrapped GTK libraries.
    
Do not load PulseAudio libraries (both native and x86_64).

 * 0 : Load PulseAudio libraries. [Default]
 * 1 : Do not load PulseAudio libraries.
    
Do not load any rc files.

 * 0 : Load rc files. [Default]
 * 1 : Do not load any rc files.
    
Add --no-sandbox argument to the guest program.

 * 0 : Does nothing. [Default]
 * 1 : Add --no-sandbox argument to the guest program.
    
Disable the handling of SIGSEGV.

 * 0 : Let the x86 program set sighandler for SIGSEGV. [Default]
 * 1 : Disable the handling of SIGSEGV.
    
Disable the handling of SIGILL.

 * 0 : Let the x86 program set sighandler for SIGILL. [Default]
 * 1 : Disable the handling of SIGILL.
    
Do not load Vulkan libraries.

 * 0 : Load Vulkan libraries. [Default]
 * 1 : Do not load Vulkan libraries, both native and x86_64.
    
Do not load x64 Vulkan overlay.

 * 0 : Try to load x64 Vulkan overlay. [Default]
 * 1 : Do not load x64 Vulkan overlay.
    
Path to look for x86_64 binaries.

 * XXXX : Add path XXXX to the binary path.
    
Expose PCLMULQDQ capabilities. Available in WowBox64.

 * 0 : Do not expose PCLMULQDQ capabilities. 
 * 1 : Expose PCLMULQDQ capabilities. [Default]
    
Prefer emulated libraries over native ones.

 * 0 : Prefer native libraries over emulated ones. [Default]
 * 1 : Prefer emulated libraries over native ones.
    
Prefer wrapped libs first even if the lib is specified with absolute path.

 * 0 : Prefer libs with absolute path over wrapped ones. [Default]
 * 1 : Prefer wrapped libs first even if the lib is specified with absolute path.
    
Predefined sets of environment variables with compatibility or performance in mind. Available in WowBox64.

 * safest : Profile with all the unsafe DynaRec optimizations disabled. 
 * safe : Well, less safer than safest. 
 * default : The default settings that most programs runs fine with a handy performance. [Default]
 * fast : Enable many unsafe optimizations, but also enable strongmem emulation. 
 * fastest : Enable many unsafe optimizations to have a better performance.
    
Path to a python3 executable.

 * XXXX : Use python3 executable at path XXXX.
    
Path to the rc file to load.

 * XXXX : Load the rc file XXXX, default rc files will not be loaded.
    
Use hardware counter for rdtsc if available.

 * 0 : Use hardware counter for rdtsc opcode if available. [Default]
 * 1 : Use hardware counter for rdtsc if and only if precision is at least 1GHz.
    
Report Invariant TSC bit in CPUID for Intel CPU type. Available in WowBox64.

 * 0 : Do not report Invariant TSC for Intel CPU type (default). [Default]
 * 1 : Report Invariant TSC bit in CPUID leaf 0x80000007 for Intel CPU type.
    
Reserve high memory area for the program, always enabled on Box32.

 * 0 : Do not reserve high memory area for the program. [Default]
 * 1 : Reserve high memory area for the program.
    
Show last few wrapped function call when a signal is caught.

 * 0 : Does nothing. [Default]
 * 1 : Show last 16 wrapped function call when a signal is caught. 
 * XXXX : Show last XXXX wrapped function call when a signal is caught.
    
Use a workaround for SDL_GetJoystickGUIDInfo function for wrapped SDL2.

 * 0 : Does nothing. [Default]
 * 1 : Use a workaround for SDL_GetJoystickGUIDInfo function for wrapped SDL2.
    
Expose SHAEXT (a.k.a. SHA_NI) capabilities. Available in WowBox64.

 * 0 : Do not expose SHAEXT capabilities. 
 * 1 : Expose SHAEXT capabilities. [Default]
    
Show native and emulated backtrace when a signal is caught.

 * 0 : Does nothing. [Default]
 * 1 : Show native and emulated backtrace when a signal is caught.
    
Always show SIGSEGV signal details.

 * 0 : Does nothing. [Default]
 * 1 : Always show SIGSEGV signal details.
    
Behaviour of SSE Flush to 0 flags. Also tracking SSE exception flags. Available in WowBox64.

 * 0 : Just track the flag. [Default]
 * 1 : Apply SSE Flush to 0 flag directly. Also reflect SSE exception flags in DynaRec (if available)
    
Expose SSE4.2 capabilities. Available in WowBox64.

 * 0 : Do not expose SSE4.2 capabilities. 
 * 1 : Expose SSE4.2 capabilities. [Default]
    
Force Vulkan for Linux Steam UI.

 * 0 : Do nothing. [Default]
 * 1 : Force Vulkan for Linux Steam UI.
    
Synchronize rounding mode between x86 and native.

 * 0 : Do not synchronize rounding mode. [Default]
 * 1 : Synchronize rounding mode between x86 and native.
    
Enable or disable colored trace output.

 * 0 : Disable colored trace output. [Default]
 * 1 : Enable colored trace output.
    
Enable or disable EMM (i.e. MMX) trace output.

 * 0 : Disable EMM trace output. [Default]
 * 1 : Enable EMM trace output.
    
Send all log and trace to a file instead of `stdout`.

 * XXXX : Send all log and trace to file XXXX. 
 * XXXX%pid : Send all log and trace to file XXXX with pid appended. 
 * stderr : Send all log and trace to `stderr`. [Default]
 * stdout : Send all log and trace to `stdout`.
    
Same as BOX64_TRACE but starts the trace immediately.

 * 0 : Disable trace output. [Default]
 * 1 : Enable trace output. Trace starts before the initialization of dependencies. 
 * symbolname : Enable trace output for `symbolname` only. Trace starts before the initialization of dependencies. 
 * 0xXXXXXXX-0xYYYYYYY : Enable trace output for the range of address (inclusive-exclusive). Trace starts before the initialization of dependencies.
    
Start trace after N opcodes executed.

 * 0 : Start trace immediately. [Default]
 * 1 : Start trace after 1 opcode executed. 
 * XXXX : Start trace after XXXX opcodes executed.
    
Enable or disable XMM (i.e. SSE) trace output.

 * 0 : Disable XMM trace output. [Default]
 * 1 : Enable XMM trace output.
    
Only available on box64 build with trace. Adds trace of all instructions executed, along with a register dump.

 * 0 : Disable trace output. [Default]
 * 1 : Enable trace output. 
 * symbolname : Enable trace output for `symbolname` only. 
 * 0xXXXXXXX-0xYYYYYYY : Enable trace output for the range of address (inclusive-exclusive).
    
Detect UnityPlayer and apply conservative settings.

 * 0 : Does nothing. 
 * 1 : Detect UnityPlayer (Windows or Linux), and apply BOX64_UNITY=1 when detected. [Default]
    
Games is a Unity one.

 * 0 : Does nothing. 
 * 1 : Unity Game, use special detecting code for Windows, apply BOX64_DYNAREC_STRONGMEM=1 for Linux. [Default]
    
Prefer wrapped libs for EGL and GLESv2.

 * 0 : Prefer emulated libs for EGL and GLESv2. [Default]
 * 1 : Prefer wrapped libs for EGL and GLESv2.
    
Force Xorg GLX extension to be present.

 * 0 : Do not force Xorg GLX extension to be present. [Default]
 * 1 : Require Xorg GLX extension when using XQueryExtension.
    
Force synchronized operation on X11 display.

 * 0 : Do not force synchronized operation on X11 display. [Default]
 * 1 : Force synchronized operation on X11 display.
    
Call XInitThreads when loading X11. This is mostly for old Loki games with the Loki_Compat library.

 * 0 : Do not call XInitThreads. [Default]
 * 1 : Call XInitThreads as soon as libX11 is loaded.
    
Behaviour of x87 80bits long double. Available in WowBox64.

 * 0 : Try to handle 80bits long double as precise as possible. [Default]
 * 1 : Use 64bits double for x87.
    
Disable the automatic switch of personality for 32-bit binaries (always enabled on Box32).

 * 0 : Switch personality for 32-bit binaries (if not already tried). [Default]
 * 1 : Do not switch personality for 32-bit binaries.
    
2026-06-13 box64 0.4.3-3+dfsg