summary refs log tree commit diff stats
path: root/results/scraper/box64/85
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--results/scraper/box64/85198
-rw-r--r--results/scraper/box64/85061
-rw-r--r--results/scraper/box64/8574
-rw-r--r--results/scraper/box64/859525
4 files changed, 788 insertions, 0 deletions
diff --git a/results/scraper/box64/85 b/results/scraper/box64/85
new file mode 100644
index 000000000..4e805a88e
--- /dev/null
+++ b/results/scraper/box64/85
@@ -0,0 +1,198 @@
+Cant run any app with box64 - ArchLinuxARM
+I have a Pi4, arch linux arm installed, updated.

+

+Uname -a:

+```

+Linux custom-pi 5.10.52-6-ARCH #1 SMP PREEMPT Tue Aug 3 18:19:31 UTC 2021 aarch64 GNU/Linux

+```

+For example, Untitled Goose Game (64bit unity game which has a linux edition)

+run.sh:

+```#!/usr/bin/env bash

+

+# Move to the game directory

+cd "$(dirname "$(realpath "$0")")" || exit

+

+# Run the game

+exec box64 ./"Untitled Goose Game" "$@"

+```

+Output:

+```Box64 with Dynarec v0.1.3 4d9559f built on Aug  8 2021 19:29:11

+Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/

+Using default BOX64_PATH: ./:bin/

+Counted 38 Env var

+Looking for ./Untitled Goose Game

+Using native(wrapped) libdl.so.2

+Using native(wrapped) librt.so.1

+Using emulated /lib/x86_64-linux-gnu/libstdc++.so.6

+Using native(wrapped) libm.so.6

+Using emulated /lib/x86_64-linux-gnu/libgcc_s.so.1

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libc.so.6

+Using native(wrapped) ld-linux-x86-64.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) 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) libGL.so.1

+Using native(wrapped) libudev.so.1

+Set current directory to /home/pi/Untitled Goose Game

+Found path: /home/pi/Untitled Goose Game/Untitled Goose Game

+Error loading needed lib /home/pi/Untitled Goose Game/Untitled Goose Game_Data/MonoBleedingEdge/x86_64/libmonobdwgc-2.0.so

+Warning: Cannot dlopen("/home/pi/Untitled Goose Game/Untitled Goose Game_Data/MonoBleedingEdge/x86_64/libmonobdwgc-2.0.so"/0x7f88c9f030, 2)

+Unable to load mono library from /home/pi/Untitled Goose Game/Untitled Goose Game_Data/MonoBleedingEdge/x86_64/libmonobdwgc-2.0.so

+Failed to load mono

+Stop waiting for remaining thread 1890

+

+```

+

+Any unity game gives same error.

+

+Also  Garrys Mod linux compilation doesnt work 

+

+start.sh

+

+```#!/usr/bin/env bash

+

+scriptdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"

+

+cd "${scriptdir}"/game || exit 1

+

+"${scriptdir}"/steam-runtime/run.sh ./hl2.sh -game garrysmod

+```

+hl2.sh:

+```GAMEROOT=$(cd "${0%/*}" && echo $PWD)/bin/linux64

+export LD_LIBRARY_PATH="${GAMEROOT}":$LD_LIBRARY_PATH

+unset LD_PRELOAD

+GAMEEXE=gmod

+

+ulimit -n 2048

+

+# enable nVidia threaded optimizations

+export __GL_THREADED_OPTIMIZATIONS=1

+

+# and launch the game

+cd "$GAMEROOT"

+

+# Enable path match if we are running with loose files

+if [ -f pathmatch.inf ]; then

+        export ENABLE_PATHMATCH=1

+fi

+

+# Do the following for strace:

+#       GAME_DEBUGGER="strace -f -o strace.log"

+# Do the following for tcmalloc

+#   LD_PRELOAD=../src/thirdparty/gperftools-2.0/.libs/libtcmalloc_debug.so:$LD_PRELOAD

+

+STATUS=42

+while [ $STATUS -eq 42 ]; do

+        if [ "${GAME_DEBUGGER}" == "gdb" ] || [ "${GAME_DEBUGGER}" == "cgdb" ]; then

+                ARGSFILE=$(mktemp $USER.hl2.gdb.XXXX)

+                echo b main > "$ARGSFILE"

+

+                # Set the LD_PRELOAD varname in the debugger, and unset the global version. This makes it so that

+                #   gameoverlayrenderer.so and the other preload objects aren't loaded in our debugger's process.

+                echo set env LD_PRELOAD=$LD_PRELOAD >> "$ARGSFILE"

+                echo show env LD_PRELOAD >> "$ARGSFILE"

+                unset LD_PRELOAD

+

+                echo run $@ >> "$ARGSFILE"

+                echo show args >> "$ARGSFILE"

+                ${GAME_DEBUGGER} box64 "${GAMEROOT}"/${GAMEEXE} -x "$ARGSFILE"

+                rm "$ARGSFILE"

+        else

+        exec ${GAME_DEBUGGER} "${GAMEROOT}"/${GAMEEXE} "$@"

+        fi

+        STATUS=$?

+done

+exit $STATUS

+```

+Output:

+```ox64 with Dynarec v0.1.3 4d9559f built on Aug  8 2021 19:29:11

+Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/

+Using default BOX64_PATH: ./:bin/

+Counted 40 Env var

+Looking for /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/gmod

+argv[1]="-game"

+argv[2]="garrysmod"

+Using native(wrapped) libdl.so.2

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libc.so.6

+Using native(wrapped) ld-linux-x86-64.so.2

+Using native(wrapped) librt.so.1

+Using emulated /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Using emulated /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/libtier0_client.so

+Using emulated /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/libvstdlib_client.so

+Using emulated /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/libsteam_api.so

+Using emulated /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/libtogl_client.so

+Using native(wrapped) libSDL2-2.0.so.0

+Using native(wrapped) libm.so.6

+Using emulated /lib/x86_64-linux-gnu/libstdc++.so.6

+Using emulated /lib/x86_64-linux-gnu/libgcc_s.so.1

+Warning: Weak Symbol _ITM_memcpyRtWn not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd2040 (0x89086)

+Warning: Weak Symbol _ITM_RU1 not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd2570 (0x89ae6)

+Warning: Weak Symbol _ZGTtdlPv not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd2928 (0x8a256)

+Warning: Weak Symbol _ITM_RU8 not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd2d08 (0x8aa16)

+Warning: Weak Symbol _ITM_memcpyRnWt not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd3090 (0x8b126)

+Warning: Weak Symbol _ZGTtnam not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa5bd3678 (0x8bcf6)

+Error: Global Symbol daylight not found, cannot apply R_X86_64_GLOB_DAT @0x7fa7031ef0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/libtier0_client.so

+Warning: Weak Symbol __gmon_start__ not found, cannot apply R_X86_64_JUMP_SLOT @0x7fa6ae2eb0 (0xef726)

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310b60 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310cd0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310d00 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310de0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310eb0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310f20 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310f40 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310f60 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73113f0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311410 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73114d0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73114f0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311580 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73115a0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311720 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311740 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311760 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311860 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv120__si_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311890 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310cc0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310cf0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310dd0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310e80 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310e90 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310ea0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73113a0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73113e0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa73114c0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311570 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311710 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311850 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv117__class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7311880 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: Symbol _ZTVN10__cxxabiv121__vmi_class_type_infoE not found, cannot apply R_X86_64_64 @0x7fa7310ee0 ((nil)) in /run/media/pi/2TB/gomos/linux/GarrysMod/game/bin/linux64/launcher_client.so

+Error: relocating symbols in elf launcher_client.so

+Error initializing needed lib launcher_client.so

+Warning: Cannot dlopen("launcher_client.so"/0x400ead, 2)

+Failed to load the launcher (Cannot dlopen("launcher_client.so"/0x400ead, 2)

+)

+2378|SIGSEGV @0x648d947c (???(/usr/local/bin/box64/0x648d947c)) (x64pc=0x7be7/???:"???", rsp=0x7fa81b3828, stack=0x7fa79b4000:0x7fa81b4000 own=(nil) fp=0x7fa81b3830), for accessing 0x7be6 (code=1/prot=0), db=(nil)((nil):(nil)/(nil):(nil)/???:clean, hash:0/0) handler=0x1

+```

+

+

+

+

+

+

+

+Different games, different errors, but Im searching the guilty part and a fix to it.

+

+Thanks

+

+output
\ No newline at end of file
diff --git a/results/scraper/box64/850 b/results/scraper/box64/850
new file mode 100644
index 000000000..f911dd349
--- /dev/null
+++ b/results/scraper/box64/850
@@ -0,0 +1,61 @@
+Error: Symbol execle not found, cannot apply R_X86_64_JUMP_SLOT
+Hi, when running a RAGE:MP server on Raspberry Pi 4 i am getting this 'Symbol execle not found' error:

+

+```

+Dynarec for ARM64, with extension: ASIMD CRC32 PageSize:4096 Running on Cortex-A72 with 4 Cores

+Params database has 24 entries

+Box64 with Dynarec v0.2.3 9698844c built on Jun 19 2023 07:53:34

+Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/

+Using default BOX64_PATH: ./:bin/

+Counted 24 Env var

+Looking for ./ragemp-server

+Rename process to "ragemp-server"

+Using native(wrapped) libatomic.so.1

+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) libutil.so.1

+Using native(wrapped) librt.so.1

+Using native(wrapped) libm.so.6

+Using emulated /lib/x86_64-linux-gnu/libstdc++.so.6

+Using emulated /lib/x86_64-linux-gnu/libgcc_s.so.1

+Error: Symbol execle not found, cannot apply R_X86_64_JUMP_SLOT @0x3fc3610 (0x4142b6) in /opt/ragemp-srv/ragemp-server

+[INFO] Starting RAGE Multiplayer server...

+```

+

+Additionally, when a connection is established, the process crashes and generates the following error:

+```

+[N] Incoming connection from **(Hidden IP)**

+free(): invalid next size (normal)

+NativeBT: ./ragemp-server() [0x349fd6fc]

+NativeBT: linux-vdso.so.1(__kernel_rt_sigreturn+0) [0x7f971e07a8]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(+0x80990) [0x7f97070990]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(gsignal+0x1c) [0x7f9702a76c]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(abort+0xf0) [0x7f970174bc]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(+0x74a6c) [0x7f97064a6c]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(+0x8adec) [0x7f9707adec]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(+0x8ccc0) [0x7f9707ccc0]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(+0x8e80c) [0x7f9707e80c]

+NativeBT: /lib/aarch64-linux-gnu/libc.so.6(realloc+0xd4) [0x7f9707f954]

+NativeBT: ./ragemp-server() [0x349e1848]

+NativeBT: ./ragemp-server(my___cxa_thread_atexit_impl+0xc) [0x34b2746c]

+NativeBT: ./ragemp-server() [0x34aa6380]

+NativeBT: ./ragemp-server() [0x349e2d84]

+NativeBT: [0x4572a648]

+EmulatedBT: ??? [0x60980]

+EmulatedBT: /lib/x86_64-linux-gnu/libstdc++.so.6(__cxa_thread_atexit+d) [0x1020a74ad]

+EmulatedBT: ??? [0x102e3f8c8]

+EmulatedBT: /opt/ragemp-srv/ragemp-server+88a7a [0x488a7a]

+EmulatedBT: ??? [0x102e3f948]

+EmulatedBT: ??? [0x44cb09a8]

+1390897|SIGABRT @0x7f97070990 (???(/lib/aarch64-linux-gnu/libc.so.6+0x7f97070990)) (x64pc=0x60993/???:"???", rsp=0x102e3f800, stack=0x102c40000:0x102e40000 own=0x102c40000 fp=0x102e3f8c8), for accessing 0x3e800153925 (code=-6/prot=0), db=(nil)((nil):(nil)/(nil):(nil)/???:clean, hash:0/0) handler=(nil)

+RSP-0x20:0x0000007f7402e7a0 RSP-0x18:0x0000000102e3f808 RSP-0x10:0x0000000000488f95 RSP-0x08:0x0000000000000000

+RSP+0x00:0x00000001020a74ad RSP+0x08:0x0000000102e3f8c8 RSP+0x10:0x0000000000488b00 RSP+0x18:0x0000000000000000

+RAX:0x0000007f7402e7a0 RCX:0x0000000003fc4008 RDX:0x0000000003fc4008 RBX:0x0000000042d1c4b0

+RSP:0x0000000102e3f800 RBP:0x0000000102e3f8c8 RSI:0x0000007f7402e7a0 RDI:0x0000000000488fb0

+ R8:0x0000000102e3fd00  R9:0x0000000000000000 R10:0x0000000101ffe590 R11:0x424d6d45aba2ea92

+R12:0x0000000000000000 R13:0x0000000000000000 R14:0x0000000042d2e2c0 R15:0x0000000000000000

+ES:0x002b CS:0x0033 SS:0x002b DS:0x002b GS:0x0043 FS:0x0053

+Aborted

+```
\ No newline at end of file
diff --git a/results/scraper/box64/857 b/results/scraper/box64/857
new file mode 100644
index 000000000..e83e95487
--- /dev/null
+++ b/results/scraper/box64/857
@@ -0,0 +1,4 @@
+Please need update for more working cracks game
+Need update for works crack games. Because crack games won't launch in box64

+

+It's detect a viruses. Please fix disable antivirus system on box64
\ No newline at end of file
diff --git a/results/scraper/box64/859 b/results/scraper/box64/859
new file mode 100644
index 000000000..e2f1813a9
--- /dev/null
+++ b/results/scraper/box64/859
@@ -0,0 +1,525 @@
+Steam New Big Picture UI (gamepadui) Really bad lag/fps on menus
+OS: Ubuntu 18.04

+Device: Nintendo Switch L4T (tegra x1)

+Ram: 4gb

+Storage 90GB

+

+

+Command: ```Steam -gamepadui```

+

+FPS is unbearably slow on gamepadui for some reason

+As shown on https://www.youtube.com/watch?v=HzXYCmmcWy0&pp=ygUVZ2FtZXBhZHVpIHN0ZWFtIGFybTY0

+the FPS is unbearably slow on the menu GUIs happening on my Nintendo Switch as well

+Log shown here:

+

+```

+deck@switch-deck:~$ BOX86_LOG=1 BOX64_LOG=1 steam -gamepadui\

+> 

+VIRGL Server Started

+steam.sh[27142]: Running Steam on ubuntu 18.04 64-bit

+steam.sh[27142]: STEAM_RUNTIME is enabled by the user

+setup.sh[27209]: Steam runtime environment up-to-date!

+steam.sh[27142]: Steam client's requirements are satisfied

+Debug level is 1

+Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 Running on Cortex-A57 with 4 Cores

+Params database has 22 entries

+Box86 with Dynarec v0.3.1 e10a7105 built on Jun 24 2023 08:07:15

+Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/

+Using default BOX86_PATH: ./:bin/

+Counted 79 Env var

+BOX86 try to Preload libgtk3-nocsd.so.0 

+Looking for /home/deck/.local/share/Steam/ubuntu12_32/steam

+steam detected

+Apply RC params for steam

+Applying BOX86_NOGTK=1

+Applying BOX86_DYNAREC_STRONGMEM=1

+Applying BOX86_EMULATED_LIBS=libudev.so.0:libSDL2-2.0.so.0

+argv[1]="-no-cef-sandbox"

+argv[2]="-noreactlogin"

+argv[3]="steam://open/minigameslist"

+argv[4]="-gamepadui"

+Rename process to "steam"

+Error loading needed lib libgtk3-nocsd.so.0

+Warning, cannot pre-load the lib (libgtk3-nocsd.so.0)

+Using native(wrapped) libdl.so.2

+Using native(wrapped) librt.so.1

+Using native(wrapped) libX11.so.6

+Using native(wrapped) libm.so.6

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libc.so.6

+Using native(wrapped) ld-linux.so.2

+[2023-06-25 18:11:38] Startup - updater built Jun 23 2023 23:15:16

+[2023-06-25 18:11:38] Startup - Steam Client launched with: '/home/deck/.local/share/Steam/ubuntu12_32/steam' '-no-cef-sandbox' '-noreactlogin' 'steam://open/minigameslist' '-gamepadui'

+[2023-06-25 18:11:38] Opted in to client beta 'publicbeta' via beta file

+You are in the 'publicbeta' client beta.

+Using native(wrapped) crashhandler.so

+Using native(wrapped) libGL.so.1

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+Looks like steam didn't shutdown cleanly, scheduling immediate update check

+[2023-06-25 18:11:40] Loading cached metrics from disk (/home/deck/.local/share/Steam/package/steam_client_metrics.bin)

+[2023-06-25 18:11:40] Using the following download hosts for Public, Realm steamglobal

+[2023-06-25 18:11:40] 1. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 1000, source = 'update_hosts_cached.vdf'

+[2023-06-25 18:11:40] 2. https://cdn.cloudflare.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'update_hosts_cached.vdf'

+[2023-06-25 18:11:40] 3. http://media.steampowered.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in'

+[2023-06-25 18:11:40] Checking for update on startup

+[2023-06-25 18:11:40] Checking for available updates...

+[2023-06-25 18:11:40] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_publicbeta_ubuntu12

+[2023-06-25 18:11:40] Manifest download: send request

+[2023-06-25 18:11:40] Manifest download: waiting for download to finish

+[2023-06-25 18:11:41] Manifest download: finished

+[2023-06-25 18:11:41] Download skipped: /steam_client_publicbeta_ubuntu12 version 1687563636, installed version 1687563636, existing pending version 0

+[2023-06-25 18:11:41] Nothing to do

+[2023-06-25 18:11:41] Verifying installation...

+[2023-06-25 18:11:41] Performing checksum verification of executable files

+[2023-06-25 18:11:47] Verification complete

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libappindicator.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libindicator.so.7

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_32/libdbusmenu-gtk.so.4

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_32/libdbusmenu-glib.so.4

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_32/libgtk-x11-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgio-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgobject-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libglib-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgdk_pixbuf-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgmodule-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgdk-x11-2.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libpangocairo-1.0.so.0

+Using native(wrapped) libXfixes.so.3

+Using native(wrapped) libxcb.so.1

+Using native(wrapped) libXau.so.6

+Using native(wrapped) libXdmcp.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libatk-1.0.so.0

+Using native(wrapped) libcairo.so.2

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libpangoft2-1.0.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libpango-1.0.so.0

+Using native(wrapped) libfontconfig.so.1

+Using native(wrapped) libXext.so.6

+Using native(wrapped) libXrender.so.1

+Using native(wrapped) libXinerama.so.1

+Using native(wrapped) libXi.so.6

+Using native(wrapped) libXrandr.so.2

+Using native(wrapped) libXcursor.so.1

+Using native(wrapped) libXcomposite.so.1

+Using native(wrapped) libXdamage.so.1

+Using native(wrapped) libfreetype.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libffi.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libpcre.so.3

+Error initializing native libpng12.so.0 (last dlerror is libpng12.so.0: wrong ELF class: ELFCLASS64)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libpng12.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libtiff.so.4

+Using native(wrapped) libjpeg.so.8

+Using native(wrapped) libz.so.1

+Using native(wrapped) libselinux.so.1

+Using native(wrapped) libresolv.so.2

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steamui.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libtier0_s.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libvstdlib_s.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libSDL3.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libv8.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libavcodec.so.58

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libavutil.so.56

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libvideo.so

+Using native(wrapped) libXtst.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libpipewire-0.3.so.0

+Using native(wrapped) libpulse.so.0

+Using native(wrapped) libX11-xcb.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libxcb-res.so.0

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xf17eafcc (0xc716)

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xf1760fd8 (0xc326)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libicui18n.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libicuuc.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libstdc++.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libgcc_s.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libvpx.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libva.so.2

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libvdpau.so.1

+Using native(wrapped) libdrm.so.2

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libavformat.so.58

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libavresample.so.4

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libswscale.so.5

+Error initializing native libbz2.so.1 (last dlerror is libbz2.so.1: wrong ELF class: ELFCLASS64)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libbz2.so.1.0

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xe453afb8 (0x35716)

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xe74a1fa8 (0x2800d6)

+

+(process:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(process:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/gio/modules/libdconfsettings.so

+XRRGetOutputInfo Workaround: initialized with override: 0 real: 0x401800d0

+XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0x401800e0

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+GetWin32Stats: display was not open yet, good

+Using native(wrapped) libdbus-1.so.3

+Using native(wrapped) libXss.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/lib/i386-linux-gnu/libudev.so.0

+Loaded SDL version 3.0.0-1782-g214d5daa3

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/filesystem_stdio.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xe020cfd8 (0x7336)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/vgui2_s.so

+Using native(wrapped) libopenal.so.1

+Using native(wrapped) libSM.so.6

+Using native(wrapped) libICE.so.6

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xe0181fd8 (0xf286)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/chromehtml.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xdfeb1fac (0x157c6)

+Error loading needed lib libgail.so

+Warning: Cannot dlopen("libgail.so"/0x682b0558, 1)

+Gtk-Message: Failed to load module "gail"

+Error loading needed lib libatk-bridge.so

+Warning: Cannot dlopen("libatk-bridge.so"/0x6850c2e8, 1)

+Gtk-Message: Failed to load module "atk-bridge"

+Error loading needed lib libunity-gtk-module.so

+Warning: Cannot dlopen("libunity-gtk-module.so"/0x682b0368, 1)

+Gtk-Message: Failed to load module "unity-gtk-module"

+

+(steam:27281): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so

+/usr/share/themes/Pop-dark/gtk-2.0/main.rc:787: error: unexpected identifier `direction', expected character `}'

+

+(steam:27281): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",

+/usr/share/themes/Pop-dark/gtk-2.0/hacks.rc:28: error: invalid string constant "normal_entry", expected valid string constant

+Error loading needed lib libgail.so

+Warning: Cannot dlopen("libgail.so"/0x68b2ebb0, 1)

+Gtk-Message: Failed to load module "gail"

+Error loading needed lib libatk-bridge.so

+Warning: Cannot dlopen("libatk-bridge.so"/0x67418350, 1)

+Gtk-Message: Failed to load module "atk-bridge"

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/gtk-2.0/modules/libcanberra-gtk-module.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libcanberra-gtk.so.0

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libcanberra.so.0

+Error initializing native libvorbisfile.so.3 (last dlerror is libvorbisfile.so.3: wrong ELF class: ELFCLASS64)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libvorbisfile.so.3

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libtdb.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libltdl.so.7

+Using native(wrapped) libvorbis.so.0

+Using native(wrapped) libogg.so.0

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+Jmp address has alternate: 0xf4103e8d -> 0x40020060

+Jmp address has alternate: 0xf4103e71 -> 0x40020070

+GetWin32Stats: display was not open yet, good

+ComputeStartupMode: forcing gamepadui via cli

+steamwebhelper.sh[27324]: Runtime for steamwebhelper: defaulting to /home/deck/.local/share/Steam/ubuntu12_64/steam-runtime-heavy

+steamwebhelper.sh[27324]: CEF sandbox already disabled

+Error loading needed lib libunity.so.9

+Warning: Cannot dlopen("libunity.so.9"/0xe01305d9, 1)

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steamclient.so

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libnm.so.0

+Using native(wrapped) libgnutls.so.30

+Using native(wrapped) libuuid.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libgudev-1.0.so.0

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xdcb54fd0 (0x124466)

+CAppInfoCacheReadFromDiskThread took 305 milliseconds to initialize

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steamservice.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xd61b7fdc (0x29c36)

+Local Device Found

+  type: 057e 2008

+  path: sdl://1

+  serial_number:  - 0

+  Manufacturer: 

+  Product:      Nintendo Switch Joy-Con (L/R)

+  Release:      0

+  Interface:    -1

+

+!! Steam controller device opened for index 0.

+Debug level is 1

+Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL PageSize:4096 Running on Cortex-A57 with 4 Cores

+Params database has 24 entries

+Box64 with Dynarec v0.2.3 0077fbe9 built on Jun 24 2023 08:07:32

+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 98 Env var

+BOX64 try to Preload libgtk3-nocsd.so.0 

+Looking for /home/deck/.local/share/Steam/ubuntu12_32/../ubuntu12_64/gldriverquery

+Rename process to "gldriverquery"

+Error loading needed lib libgtk3-nocsd.so.0

+Warning, cannot pre-load of libgtk3-nocsd.so.0

+Using native(wrapped) libSDL2-2.0.so.0

+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) libutil.so.1

+Using native(wrapped) librt.so.1

+Using native(wrapped) libm.so.6

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libopenvr_api.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xc20fc2b0 (0xac66)

+Warning: Weak Symbol _ZGTtdlPv not found, cannot apply R_386_JMP_SLOT 0xc20fc2d4 (0xacf6)

+Using native(wrapped) libGL.so.1

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/libaudio.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xd4ffafd4 (0x8b86)

+Local Device Found

+  type: 057e 2008

+  path: sdl://1

+  serial_number:  - 0

+  Manufacturer: 

+  Product:      Nintendo Switch Joy-Con (L/R)

+  Release:      0

+  Interface:    -1

+

+!! Steam controller device opened for index 0.

+Debug level is 1

+Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 Running on Cortex-A57 with 4 Cores

+Params database has 22 entries

+Box86 with Dynarec v0.3.1 e10a7105 built on Jun 24 2023 08:07:15

+Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/

+Using default BOX86_PATH: ./:bin/

+Counted 99 Env var

+BOX86 try to Preload libgtk3-nocsd.so.0 

+Looking for /home/deck/.local/share/Steam/ubuntu12_32/../ubuntu12_32/gldriverquery

+Rename process to "gldriverquery"

+Error loading needed lib libgtk3-nocsd.so.0

+Warning, cannot pre-load the lib (libgtk3-nocsd.so.0)

+Using native(wrapped) libSDL2-2.0.so.0

+Using native(wrapped) libdl.so.2

+Using native(wrapped) libm.so.6

+Using native(wrapped) librt.so.1

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libc.so.6

+Using native(wrapped) ld-linux.so.2

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+Using native(wrapped) libGL.so.1

+client: VTEST_CLIENT_DISCONNECTED

+X Error of failed request:  BadMatch (invalid parameter attributes)

+  Major opcode of failed request:  154 (GLX)

+  Minor opcode of failed request:  26 (X_GLXMakeContextCurrent)

+  Serial number of failed request:  76

+  Current serial number in output stream:  76

+Debug level is 1

+Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL PageSize:4096 Running on Cortex-A57 with 4 Cores

+Params database has 24 entries

+Box64 with Dynarec v0.2.3 0077fbe9 built on Jun 24 2023 08:07:32

+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 98 Env var

+BOX64 try to Preload libgtk3-nocsd.so.0 

+Looking for /home/deck/.local/share/Steam/ubuntu12_32/../ubuntu12_64/vulkandriverquery

+Rename process to "vulkandriverquery"

+Error loading needed lib libgtk3-nocsd.so.0

+Warning, cannot pre-load of libgtk3-nocsd.so.0

+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) libutil.so.1

+Using native(wrapped) librt.so.1

+Using native(wrapped) libvulkan.so.1

+nvdc: start nvdcEventThread

+nvdc: nvdcEventThread select failed: Bad file descriptor

+Failed to init SteamVR because it isn't installed

+Debug level is 1

+Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA PageSize:4096 Running on Cortex-A57 with 4 Cores

+Params database has 22 entries

+Box86 with Dynarec v0.3.1 e10a7105 built on Jun 24 2023 08:07:15

+Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/

+Using default BOX86_PATH: ./:bin/

+Counted 100 Env var

+BOX86 try to Preload libgtk3-nocsd.so.0 

+Looking for /home/deck/.local/share/Steam/ubuntu12_32/../ubuntu12_32/vulkandriverquery

+Rename process to "vulkandriverquery"

+Error loading needed lib libgtk3-nocsd.so.0

+Warning, cannot pre-load the lib (libgtk3-nocsd.so.0)

+Using native(wrapped) libdl.so.2

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libc.so.6

+Using native(wrapped) ld-linux.so.2

+Using native(wrapped) librt.so.1

+Error initializing native libvulkan.so.1 (last dlerror is libvulkan.so.1: wrong ELF class: ELFCLASS64)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libvulkan.so.1

+Using native(wrapped) libm.so.6

+Controller 0 disconnected

+Error loading needed lib libGLX_nvidia.so.0

+Warning: Cannot dlopen("libGLX_nvidia.so.0"/0xe72a28b8, 1)

+Error loading needed lib libGLX_nvidia.so.0

+Warning: Cannot dlopen("libGLX_nvidia.so.0"/0xe72a28b8, 1)

+Error loading needed lib libGLX_nvidia.so.0

+Warning: Cannot dlopen("libGLX_nvidia.so.0"/0xe72a28b8, 1)

+Vulkan missing requested extension 'VK_KHR_surface'.

+Vulkan missing requested extension 'VK_KHR_xlib_surface'.

+BInit - Unable to initialize Vulkan!

+!! Controller 0 attributes:

+  Type: 41

+  ProductID: 8200

+  Serial: 57e-2008-4bc81be6

+  Capabilities: 041843ff

+  Firmware Version: 0

+  Firmware Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+  Bootloader Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+Loaded Config for Local Selection Path for App ID 413090, Controller 0: controller_base/bp_switch_pro.vdf

+Loaded Config for Local Selection Path for App ID 413090, Controller 0: controller_base/bp_switch_pro.vdf

+Loaded Config for Local Selection Path for App ID 769, Controller 0: controller_base/basicui_gamepad.vdf

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+!! Controller 0 attributes:

+  Type: 41

+  ProductID: 8200

+  Serial: 57e-2008-4bc81be6

+  Capabilities: 041843ff

+  Firmware Version: 0

+  Firmware Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+  Bootloader Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+Controller 0 disconnected

+

+(steam:27281): Gtk-WARNING **: gtk_disable_setlocale() must be called before gtk_init()

+Error loading needed lib libunity.so.9

+Warning: Cannot dlopen("libunity.so.9"/0xe6cd9c5c, 1)

+Local Device Found

+  type: 057e 2008

+  path: sdl://1

+  serial_number:  - 0

+  Manufacturer: 

+  Product:      Nintendo Switch Joy-Con (L/R)

+  Release:      0

+  Interface:    -1

+

+!! Steam controller device opened for index 0.

+!! Controller 0 attributes:

+  Type: 41

+  ProductID: 8200

+  Serial: 57e-2008-4bc81be6

+  Capabilities: 041843ff

+  Firmware Version: 0

+  Firmware Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+  Bootloader Build Time: 2147483647 (Tue, 19 Jan 2038 03:14:07 GMT)

+Loaded Config for Local Selection Path for App ID 413090, Controller 0: controller_base/bp_switch_pro.vdf

+Loaded Config for Local Selection Path for App ID 413090, Controller 0: controller_base/bp_switch_pro.vdf

+Loaded Config for Local Selection Path for App ID 769, Controller 0: controller_base/basicui_gamepad.vdf

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+local (potentially out of sync) copy of roaming config loaded - 230 bytes.

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+BRefreshApplicationsInLibrary 1: 19ms

+roaming config store loaded successfully - 230 bytes.

+migrating temporary roaming config store

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/friendsui.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xaace9fe0 (0x120b46)

+Using emulated /home/deck/.local/share/Steam/ubuntu12_32/serverbrowser.so

+Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0xaa2d4fdc (0x8be26)

+ExecCommandLine: "'/home/deck/.local/share/Steam/ubuntu12_32/steam' '-no-cef-sandbox' '-noreactlogin' 'steam://open/minigameslist' '-gamepadui'"

+ExecuteSteamURL: "steam://open/minigameslist"

+System startup time: 25.45 seconds

+Loaded Config for Local Selection Path for App ID 413080, Controller 0: /home/deck/.local/share/Steam/steamapps/workshop/content/241100/650764041/controller_configuration.vdf

+

+sh: 1: lsof: not found

+BuildCompleteAppOverviewChange: 164 apps

+

+(steam:27281): Gtk-WARNING **: gtk_disable_setlocale() must be called before gtk_init()

+

+(steam:27281): Gtk-WARNING **: gtk_disable_setlocale() must be called before gtk_init()

+RegisterForAppOverview 1: 218ms

+RegisterForAppOverview 2: 234ms

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+Loaded Config for Last Resort Path for App ID 769, Controller 0: /home/deck/.local/share/Steam//controller_base/basicui_gamepad.vdf

+gl_version 46 - core profile enabled

+vtest_client_dispatch_commands: client context created.

+GLSL feature level 460

+GLSL feature level 460

+CAPIJobRequestUserStats - Server response failed 2

+[2023-06-25 18:13:44] Background update loop checking for update. . .

+[2023-06-25 18:13:45] Checking for available updates...

+[2023-06-25 18:13:45] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_publicbeta_ubuntu12

+[2023-06-25 18:13:45] Manifest download: send request

+[2023-06-25 18:13:45] Manifest download: waiting for download to finish

+[2023-06-25 18:13:49] Manifest download: finished

+[2023-06-25 18:13:49] Download skipped by HTTP 304 Not Modified

+[2023-06-25 18:13:49] Nothing to do

+[2023-06-25 18:14:02] Background update loop checking for update. . .

+[2023-06-25 18:14:02] Downloading manifest: https://client-update.akamai.steamstatic.com/steam_client_publicbeta_ubuntu12?t=4088200670

+[2023-06-25 18:14:02] Manifest download: send request

+[2023-06-25 18:14:02] Manifest download: waiting for download to finish

+[2023-06-25 18:14:07] Manifest download: finished

+[2023-06-25 18:14:07] Download skipped by HTTP 304 Not Modified

+[2023-06-25 18:14:07] Nothing to do

+CGlibContextManager: g_main_context_iteration() exceeded budget, deferring outstanding requests to the next frame

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_ref: assertion `G_IS_OBJECT (object)' failed

+

+(steam:27281): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed

+Loaded Config for Local Selection Path for App ID 413080, Controller 0: /home/deck/.local/share/Steam/steamapps/workshop/content/241100/650764041/controller_configuration.vdf

+

+```

+Would like some help if possible! Thank you
\ No newline at end of file