diff options
Diffstat (limited to '')
| -rw-r--r-- | results/scraper/box64/34 | 14 | ||||
| -rw-r--r-- | results/scraper/box64/342 | 16 | ||||
| -rw-r--r-- | results/scraper/box64/343 | 7 | ||||
| -rw-r--r-- | results/scraper/box64/344 | 8 | ||||
| -rw-r--r-- | results/scraper/box64/347 | 10 | ||||
| -rw-r--r-- | results/scraper/box64/348 | 13 | ||||
| -rw-r--r-- | results/scraper/box64/349 | 356 |
7 files changed, 424 insertions, 0 deletions
diff --git a/results/scraper/box64/34 b/results/scraper/box64/34 new file mode 100644 index 000000000..feed85cff --- /dev/null +++ b/results/scraper/box64/34 @@ -0,0 +1,14 @@ +WoW Classic - Classic era +Game crashes with missing opcode using interpreter and sigsegv using dynarec. + +Interpreter opcode: +``` +13433|0x14000c9ab: Unimplemented Opcode (53) F4 48 C7 45 38 AA 13 00 00 48 8B 45 38 48 35 +``` +Dynarec: +``` +13339|SIGSEGV @0x7f9bda8ac0 (???(0x7f9bda8ac0)) (x64pc=0x14000e8ce/???:"???", rsp=0x22d778, stack=0x7fa034a000:0x7fa0b4a000 own=(nil) fp=(nil)), for accessing 0x728b4428 (code=1/prot=0), db=0x6bfc2990(0x7f9bda8930:0x7f9bda8c70/0x14000e897:0x14000e908/???:clean, hash:9974f0ae/9974f0ae) handler=0x7bcb9e30 +13339|SIGSEGV @0x7f9ad54568 (???(0x7f9ad54568)) (x64pc=0x1400b3dd1/???:"???", rsp=0x22f498, stack=0x7fa034a000:0x7fa0b4a000 own=(nil) fp=0x22f4d9), for accessing 0x3e73245e (code=2/prot=40), db=0x6bfd7d70(0x7f9ad5455c:0x7f9ad545ac/0x1400b3dd1:0x1400b3dd3/???:clean, hash:1515/1515) handler=0x7bcb9e30 +0009:err:seh:call_stack_handlers invalid frame 22f4e9 (0x132000-0x230000) +0009:err:seh:raise_exception Exception frame is not in stack limits => unable to dispatch exception. +``` \ No newline at end of file diff --git a/results/scraper/box64/342 b/results/scraper/box64/342 new file mode 100644 index 000000000..f48b1b4e9 --- /dev/null +++ b/results/scraper/box64/342 @@ -0,0 +1,16 @@ +unable to build since https://github.com/ptitSeb/box64/commit/48b881f4912bc795e0467e334e359e9876f73c4f +during building: +``` +/home/gman/box64/src/libtools/threads.c: In function ‘my_pthread_cond_clockwait’: +/home/gman/box64/src/libtools/threads.c:678:16: warning: implicit declaration of function ‘pthread_cond_clockwait’; did you mean ‘my_pthread_cond_clockwait’? [-Wimplicit-function-declaration] + 678 | return pthread_cond_clockwait(cond, getAlignedMutex((pthread_mutex_t*)mutex), __clock_id, __abstime); + | ^~~~~~~~~~~~~~~~~~~~~~ + | my_pthread_cond_clockwait +``` + +and failure during linking +``` +CMakeFiles/box64.dir/src/libtools/threads.c.o: In function `my_pthread_cond_clockwait': +/home/gman/box64/src/libtools/threads.c:678: undefined reference to `pthread_cond_clockwait' +collect2: error: ld returned 1 exit status +``` \ No newline at end of file diff --git a/results/scraper/box64/343 b/results/scraper/box64/343 new file mode 100644 index 000000000..7b3c8f455 --- /dev/null +++ b/results/scraper/box64/343 @@ -0,0 +1,7 @@ +GMOD: Error symbol __wcscat_chk not found +as the title says: + +Error: Symbol __wcscat_chk not found, cannot apply R_X86_64_JUMP_SLOT @0xffff568560e0 (0x564276) in /home/raezroth/.local/share/Steam/steamapps/common/GarrysMod/bin/linux64/client_client.so + +Full log of GMOD in Box64: +[gmod.log](https://github.com/ptitSeb/box64/files/9036754/gmod.log) diff --git a/results/scraper/box64/344 b/results/scraper/box64/344 new file mode 100644 index 000000000..a2ac5a404 --- /dev/null +++ b/results/scraper/box64/344 @@ -0,0 +1,8 @@ +aarch64 vs arm64 +Hi, I made for pterodactyl a egg that runs a teamspeak 3 server (amd64 only) with the box64 in the docker image installed from the repo. + +On my raspberry pi 4 B 4GB it works fine what. The host runs debian 11 and kernel version 5.15. + +Now someone tryed to run it on oracle cloud and `uname -a` sas: (Linux vpn 5.15.0-1003-oracle #5-Ubuntu SMP Wed Apr 20 04:51:36 UTC 2022 aarch64 aarch64 aarch64 GNU/Linux) on Ubuntu 22.04 and he gets `cannot execute binary file: Exec format error` + +How can I fix this? \ No newline at end of file diff --git a/results/scraper/box64/347 b/results/scraper/box64/347 new file mode 100644 index 000000000..2e8e8fe0a --- /dev/null +++ b/results/scraper/box64/347 @@ -0,0 +1,10 @@ +Suggestion: Allow for passing custom environment variables to only programs launched with BOX86/64 +I have a usecase where I would like to launch a program (steam) with different environment variables for the x86 bins from the x86_64 bins. There is no builtin functionality to the steam launch script to support this (and it is difficult to modify without triggering an automatic reinstall). + +What I would like is a way set environment variables for the boxes to pick up on and pass to any boxed binary. +something like +``` +BOX86_ENV='DISPLAY=:2' BOX64_ENV='DISPLAY=:0' steam +``` + +of course other normal environment variables should continue to be passed as before to all binaries (like setting STEAMOS=1 and STEAM_RUNTIME=1) \ No newline at end of file diff --git a/results/scraper/box64/348 b/results/scraper/box64/348 new file mode 100644 index 000000000..8c858b1da --- /dev/null +++ b/results/scraper/box64/348 @@ -0,0 +1,13 @@ +Steam Aperture Desk Job multiple Vulkan functions need wrapping +``` +Warning, no wrapper for vkCmdSetCheckpointNV +Warning, no wrapper for vkGetQueueCheckpointDataNV +Warning, no wrapper for vkCmdDrawMeshTasksIndirectCountNV +Warning, no wrapper for vkCmdDrawMeshTasksIndirectNV +Warning, no wrapper for vkCmdDrawMeshTasksNV +Warning, no wrapper for vkCmdSetExclusiveScissorNV +Warning, no wrapper for vkCmdBindShadingRateImageNV +Warning, no wrapper for vkCmdSetCoarseSampleOrderNV +Warning, no wrapper for vkCmdSetViewportShadingRatePaletteNV +``` +Aperture Desk Job is a free short game made by valve. it uses vulkan and boots to a black screen but never crashes. multiple vulkan functions need wrapping \ No newline at end of file diff --git a/results/scraper/box64/349 b/results/scraper/box64/349 new file mode 100644 index 000000000..82c637bdc --- /dev/null +++ b/results/scraper/box64/349 @@ -0,0 +1,356 @@ +Steam Mini Metro Blank While Screen +Logs don't indicate anything. The game does not crash but it is a black while fullscreen. +This appears to be a unity based game: +``` +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to ProcessingInstallScript with "" +Warning, resizing of TLS occured! size: 40960->49152 / n_elfs: 1->1 +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to SynchronizingCloud with "" +Warning, resizing of TLS occured! size: 40960->49152 / n_elfs: 1->1 +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to SiteLicenseSeatCheckout with "" +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to CreatingProcess with "" +GameAction [AppID 287980, ActionID 1] : LaunchApp waiting for user response to CreatingProcess "" +GameAction [AppID 287980, ActionID 1] : LaunchApp continues with user response "CreatingProcess" +/bin/sh\0-c\0/home/garrett/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=287980 -- '/home/garrett/.local/share/Steam/steamapps/common/MiniMetro/launchscript'\0 +Game process added : AppID 287980 "/home/garrett/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=287980 -- '/home/garrett/.local/share/Steam/steamapps/common/MiniMetro/launchscript'", ProcID 9716, IP 0.0.0.0:0 +chdir /home/garrett/.local/share/Steam/steamapps/common/MiniMetro +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 103 Env var +BOX86 try to Preload /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so /home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/reaper +argv[1]="SteamLaunch" +argv[2]="AppId=287980" +argv[3]="--" +argv[4]="/home/garrett/.local/share/Steam/steamapps/common/MiniMetro/launchscript" +Rename process to "reaper" +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so +Using native(wrapped) libdl.so.2 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libGL.so.1 +Using native(wrapped) libm.so.6 +Using native(wrapped) libc.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to WaitingGameWindow with "" +Warning, cannot pre-load the lib (/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so) +GameAction [AppID 287980, ActionID 1] : LaunchApp changed task to Completed with "" +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored. +Debug level is 1 +Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL PageSize:4096 +Box64 with Dynarec v0.1.9 b4c389c built on Jul 10 2022 15:45:04 +Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/ +BOX64 will force the used of emulated libs for libmpg123.so.0 +Using default BOX64_PATH: ./:bin/ +Counted 103 Env var +BOX64 try to Preload /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so /home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so +Looking for /home/garrett/.local/share/Steam/steamapps/common/MiniMetro/Mini Metro +Rename process to "Mini Metro" +Warning, cannot pre-load the lib (/home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so) +Using emulated /home/garrett/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux-x86-64.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/x86_64-linux-gnu/libstdc++.so.6 +Using native(wrapped) libGL.so.1 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/x86_64-linux-gnu/libgcc_s.so.1 +Using emulated UnityPlayer.so +steamwebhelper.sh[9723]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[9723]: CEF sandbox already disabled +Found path: /home/garrett/.local/share/Steam/steamapps/common/MiniMetro/Mini Metro +Using native(wrapped) libX11.so.6 +Using native(wrapped) libXext.so.6 +Using native(wrapped) libxcb.so.1 +Using native(wrapped) libXau.so.6 +Using native(wrapped) libXdmcp.so.6 +Using native(wrapped) libXcursor.so.1 +Using native(wrapped) libXinerama.so.1 +Using native(wrapped) libXi.so.6 +Using native(wrapped) libXrandr.so.2 +Using native(wrapped) libXrender.so.1 +Using native(wrapped) libXss.so.1 +Using native(wrapped) libXxf86vm.so.1 +Using native(wrapped) libudev.so.1 +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steamclient.so +Using native(wrapped) libXrandr.so.2 +Using native(wrapped) libX11.so.6 +Using native(wrapped) libXext.so.6 +Using native(wrapped) libxcb.so.1 +Using native(wrapped) libXau.so.6 +Using native(wrapped) libXdmcp.so.6 +Using native(wrapped) libXrender.so.1 +Using native(wrapped) libXi.so.6 +Using native(wrapped) libXtst.so.6 +Using native(wrapped) libopenal.so.1 +Using native(wrapped) libpulse.so.0 +Using native(wrapped) libnm.so.0 +Using native(wrapped) libgobject-2.0.so.0 +Using native(wrapped) libglib-2.0.so.0 +Using native(wrapped) libgio-2.0.so.0 +Using native(wrapped) libgmodule-2.0.so.0 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/filesystem_stdio.so +Warning, resizing of TLS occured! size: 16384->24576 / n_elfs: 1->1 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/vgui2_s.so +Using native(wrapped) libfontconfig.so.1 +Using native(wrapped) libfreetype.so.6 +Using native(wrapped) libgtk-x11-2.0.so.0 +Using native(wrapped) libgdk-x11-2.0.so.0 +Using native(wrapped) libgdk_pixbuf-2.0.so.0 +Using native(wrapped) libpangocairo-1.0.so.0 +Using native(wrapped) libpango-1.0.so.0 +Using native(wrapped) libXinerama.so.1 +Using native(wrapped) libSM.so.6 +Using native(wrapped) libICE.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/chromehtml.so +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Game process updated : AppID 287980 "/home/garrett/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=287980 -- '/home/garrett/.local/share/Steam/steamapps/common/MiniMetro/launchscript'", ProcID 9720, IP 0.0.0.0:0 +Using emulated friendsui.so +Warning, resizing of TLS occured! size: 24576->32768 / n_elfs: 1->1 +Using emulated serverbrowser.so +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +steamwebhelper.sh[9832]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[9832]: CEF sandbox already disabled +Warning, resizing of TLS occured! size: 40960->49152 / n_elfs: 1->1 +steamwebhelper.sh[9915]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[9915]: CEF sandbox already disabled +steamwebhelper.sh[9985]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[9985]: CEF sandbox already disabled +steamwebhelper.sh[10060]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[10060]: CEF sandbox already disabled +steamwebhelper.sh[10129]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[10129]: CEF sandbox already disabled +steamwebhelper.sh[10204]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[10204]: CEF sandbox already disabled +src/common/html/chrome_ipc_client.cpp (1077) : Failed to connect to master html process, created shared memory (spawn time 60.80) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Warning, resizing of TLS occured! size: 24576->32768 / n_elfs: 1->1 +Stop waiting for remaining thread 9827 +CCrossProcessPipe::BWrite wrote too few bytes: 32 (Broken pipe). Continuing. +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Debug level is 1 +Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 +Box86 with Dynarec v0.2.7 d38c59d3 built on Jul 11 2022 00:45:22 +Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/ +BOX86 will force the used of emulated libs for libSDL2-2.0.so.0 +Using default BOX86_PATH: ./:bin/ +Counted 70 Env var +Looking for /home/garrett/.local/share/Steam/ubuntu12_32/gameoverlayui +argv[1]="-pid" +argv[2]="9720" +argv[3]="-steampid" +argv[4]="9430" +argv[5]="-manuallyclearframes" +argv[6]="0" +argv[7]="-gameid" +argv[8]="287980" +Rename process to "gameoverlayui" +Using native(wrapped) libdl.so.2 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) librt.so.1 +Using emulated libtier0_s.so +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6 +Using native(wrapped) libm.so.6 +Using emulated /home/garrett/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1 +Using emulated libvstdlib_s.so +Using emulated gameoverlayui.so +Using emulated libSDL2-2.0.so.0 +Using native(wrapped) libGL.so.1 +Using emulated crashhandler.so +Warning, resizing of TLS occured! size: 8192->16384 / n_elfs: 1->1 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220607031826) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +steamwebhelper.sh[10277]: Runtime for steamwebhelper: defaulting to /home/garrett/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +steamwebhelper.sh[10277]: CEF sandbox already disabled +``` \ No newline at end of file |