diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-03-05 20:47:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-05 20:47:50 +0100 |
| commit | b56be08f959557a0a1fd18190ff89f8de83862a1 (patch) | |
| tree | 479d45d4eec05abd148d5038e9e78807d9400590 /docs | |
| parent | cabcca2e31207aea12fe0a07c41b3c6b56ce1892 (diff) | |
| parent | b1923cadb5fbd4abd3fcba36142266f6ce588f4e (diff) | |
| download | box64-b56be08f959557a0a1fd18190ff89f8de83862a1.tar.gz box64-b56be08f959557a0a1fd18190ff89f8de83862a1.zip | |
Merge pull request #534 from ptitSeb/steam_chrome
Steamwebhelper compatibility
Diffstat (limited to 'docs')
| -rwxr-xr-x | docs/USAGE.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 422dc176..cc95735d 100755 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -202,6 +202,11 @@ Handling of x87 80bits long double * 0 : Try to handle 80bits long double as precise as possible (Default) * 1 : Handle them as double +#### BOX64_LIBCEF * +Detect libcef and apply malloc_hack settings +* 0 : Don't detect libcef +* 1 : Detect libcef, and apply MALLOC_HACK=2 if detected (Default) + #### BOX64_LIBGL * * libXXXX set the name for libGL (defaults to libGL.so.1). * /PATH/TO/libGLXXX : Sets the name and path for libGL @@ -236,6 +241,12 @@ Box64 will use a dummy crashhandler.so library * 0 : Use Emulated crashhandler.so library if needed * 1 : Use an internal dummy (completly empty) crashhandler.so library (defaut) +#### BOX64_MALLOC_HACK * +How Box64 will handle hooking of 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 (not advised) + * 2 : Like 0, but track special mmap / free (some redirected functions were inlined and cannot be redirected) + #### BOX64_NOPULSE * Disables the load of pulseaudio libraries. * 0 : Load pulseaudio libraries if found. (Default.) |