summary refs log tree commit diff stats
path: root/results/scraper/box64/180
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--results/scraper/box64/180179
-rw-r--r--results/scraper/box64/180257
-rw-r--r--results/scraper/box64/1805129
-rw-r--r--results/scraper/box64/18097
4 files changed, 372 insertions, 0 deletions
diff --git a/results/scraper/box64/180 b/results/scraper/box64/180
new file mode 100644
index 000000000..4d5ea7b9a
--- /dev/null
+++ b/results/scraper/box64/180
@@ -0,0 +1,179 @@
+Compile Error on Raspbian x86
+Hi, when running make -j4 I get the error bellow. RasPi4 4GB:

+

+Raspbian 10

+Kernel 5.10.63-v76+

+

+```

+Scanning dependencies of target dynarec_arm

+Scanning dependencies of target WRAPPERS

+[  0%] Generating ../src/wrapped/generated/functions_list.txt

+[  0%] Building C object CMakeFiles/dynarec_arm.dir/src/dynarec/dynablock.c.o

+[  0%] Building C object CMakeFiles/dynarec_arm.dir/src/dynarec/dynarec_arm64.c.o

+[  1%] Building C object CMakeFiles/dynarec_arm.dir/src/dynarec/dynarec_arm64_functions.c.o

+In file included from /home/pi/box64/src/emu/x64emu_private.h:4,

+                 from /home/pi/box64/src/dynarec/dynarec_arm64.c:11:

+/home/pi/box64/src/include/regs.h:250:2: error: unknown type name ‘__uint128_t’

+  __uint128_t u128;

+  ^~~~~~~~~~~

+In file included from /home/pi/box64/src/emu/x64emu_private.h:4,

+                 from /home/pi/box64/src/dynarec/dynablock.c:10:

+/home/pi/box64/src/include/regs.h:250:2: error: unknown type name ‘__uint128_t’

+  __uint128_t u128;

+  ^~~~~~~~~~~

+In file included from /home/pi/box64/src/dynarec/dynarec_arm64.c:17:

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8’:

+/home/pi/box64/src/emu/x64run_private.h:20:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Fetch8(x64emu_t *emu) {return *(uint8_t*)(R_RIP++);}

+                                                      ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8s’:

+/home/pi/box64/src/emu/x64run_private.h:21:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline int8_t Fetch8s(x64emu_t *emu) {return *(int8_t*)(R_RIP++);}

+                                                      ^

+In file included from /home/pi/box64/src/dynarec/dynablock.c:16:

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8’:

+/home/pi/box64/src/emu/x64run_private.h:20:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Fetch8(x64emu_t *emu) {return *(uint8_t*)(R_RIP++);}

+                                                      ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16’:

+/home/pi/box64/src/emu/x64run_private.h:24:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint16_t val = *(uint16_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8s’:

+/home/pi/box64/src/emu/x64run_private.h:21:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline int8_t Fetch8s(x64emu_t *emu) {return *(int8_t*)(R_RIP++);}

+                                                      ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16’:

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16s’:

+/home/pi/box64/src/emu/x64run_private.h:30:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int16_t val = *(int16_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32’:

+/home/pi/box64/src/emu/x64run_private.h:36:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint32_t val = *(uint32_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32s’:

+/home/pi/box64/src/emu/x64run_private.h:42:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int32_t val = *(int32_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64’:

+/home/pi/box64/src/emu/x64run_private.h:48:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t val = *(uint64_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64s’:

+/home/pi/box64/src/emu/x64run_private.h:54:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int64_t val = *(int64_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Peek’:

+/home/pi/box64/src/emu/x64run_private.h:58:63: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Peek(x64emu_t *emu, int offset){return *(uint8_t*)(R_RIP + offset);}

+                                                               ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Pop’:

+/home/pi/box64/src/emu/x64run_private.h:62:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t* st = ((uint64_t*)(R_RSP));

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Push’:

+/home/pi/box64/src/emu/x64run_private.h:70:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     *((uint64_t*)R_RSP) = v;

+       ^

+/home/pi/box64/src/emu/x64run_private.h:24:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint16_t val = *(uint16_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16s’:

+/home/pi/box64/src/emu/x64run_private.h:30:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int16_t val = *(int16_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32’:

+/home/pi/box64/src/emu/x64run_private.h:36:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint32_t val = *(uint32_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32s’:

+/home/pi/box64/src/emu/x64run_private.h:42:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int32_t val = *(int32_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64’:

+/home/pi/box64/src/emu/x64run_private.h:48:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t val = *(uint64_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64s’:

+/home/pi/box64/src/emu/x64run_private.h:54:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int64_t val = *(int64_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Peek’:

+/home/pi/box64/src/emu/x64run_private.h:58:63: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Peek(x64emu_t *emu, int offset){return *(uint8_t*)(R_RIP + offset);}

+                                                               ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Pop’:

+/home/pi/box64/src/emu/x64run_private.h:62:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t* st = ((uint64_t*)(R_RSP));

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Push’:

+/home/pi/box64/src/emu/x64run_private.h:70:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     *((uint64_t*)R_RSP) = v;

+       ^

+make[2]: *** [CMakeFiles/dynarec_arm.dir/build.make:76: CMakeFiles/dynarec_arm.dir/src/dynarec/dynarec_arm64.c.o] Error 1

+make[2]: *** Waiting for unfinished jobs....

+In file included from /home/pi/box64/src/emu/x64emu_private.h:4,

+                 from /home/pi/box64/src/dynarec/dynarec_arm64_functions.c:15:

+/home/pi/box64/src/include/regs.h:250:2: error: unknown type name ‘__uint128_t’

+  __uint128_t u128;

+  ^~~~~~~~~~~

+In file included from /home/pi/box64/src/dynarec/dynarec_arm64_functions.c:21:

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8’:

+/home/pi/box64/src/emu/x64run_private.h:20:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Fetch8(x64emu_t *emu) {return *(uint8_t*)(R_RIP++);}

+                                                      ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch8s’:

+/home/pi/box64/src/emu/x64run_private.h:21:54: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline int8_t Fetch8s(x64emu_t *emu) {return *(int8_t*)(R_RIP++);}

+                                                      ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16’:

+/home/pi/box64/src/emu/x64run_private.h:24:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint16_t val = *(uint16_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch16s’:

+/home/pi/box64/src/emu/x64run_private.h:30:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int16_t val = *(int16_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32’:

+/home/pi/box64/src/emu/x64run_private.h:36:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint32_t val = *(uint32_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch32s’:

+/home/pi/box64/src/emu/x64run_private.h:42:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int32_t val = *(int32_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64’:

+/home/pi/box64/src/emu/x64run_private.h:48:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t val = *(uint64_t*)R_RIP;

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Fetch64s’:

+/home/pi/box64/src/emu/x64run_private.h:54:20: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     int64_t val = *(int64_t*)R_RIP;

+                    ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Peek’:

+/home/pi/box64/src/emu/x64run_private.h:58:63: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+ static inline uint8_t Peek(x64emu_t *emu, int offset){return *(uint8_t*)(R_RIP + offset);}

+                                                               ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Pop’:

+/home/pi/box64/src/emu/x64run_private.h:62:21: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     uint64_t* st = ((uint64_t*)(R_RSP));

+                     ^

+/home/pi/box64/src/emu/x64run_private.h: In function ‘Push’:

+/home/pi/box64/src/emu/x64run_private.h:70:7: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     *((uint64_t*)R_RSP) = v;

+       ^

+/home/pi/box64/src/dynarec/dynarec_arm64_functions.c: In function ‘arm_ud’:

+/home/pi/box64/src/dynarec/dynarec_arm64_functions.c:157:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]

+     emit_signal(emu, SIGILL, (void*)R_RIP, 0);

+                              ^

+make[2]: *** [CMakeFiles/dynarec_arm.dir/build.make:63: CMakeFiles/dynarec_arm.dir/src/dynarec/dynablock.c.o] Error 1

+make[2]: *** [CMakeFiles/dynarec_arm.dir/build.make:89: CMakeFiles/dynarec_arm.dir/src/dynarec/dynarec_arm64_functions.c.o] Error 1

+make[1]: *** [CMakeFiles/Makefile2:198: CMakeFiles/dynarec_arm.dir/all] Error 2

+make[1]: *** Waiting for unfinished jobs....

+Detected same build as last run, skipping

+[  1%] Built target WRAPPERS

+make: *** [Makefile:163: all] Error 2

+```

+

+I'm not very Linux savvy, so not sure how to proceed or if this may have been caused by me. Happy to help with any troubleshooting required.
\ No newline at end of file
diff --git a/results/scraper/box64/1802 b/results/scraper/box64/1802
new file mode 100644
index 000000000..2cd1d4f36
--- /dev/null
+++ b/results/scraper/box64/1802
@@ -0,0 +1,57 @@
+Error: Symbol libusb_dev_mem_alloc not found when running X64 Openocd
+The log is as follows:

+```sh

+./box64 ./openocd -f ./test.cfg -s scripts

+sh: lscpu: not found

+sh: lscpu: not found

+ PageSize:4096 Running on Unknown CPU with 4 Cores

+Will use time-based emulation for rdtsc, even if hardware counter are available

+Will use Software counter measured at 1.0 GHz emulating 2.0 GHz

+Params database has 14 entries

+Box64 v0.3.1 16f156be built on Sep  6 2024 09:53:27

+BOX64: Didn't detect 48bits of address space, considering it's 39bits

+Counted 19 Env var

+BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/bin/:/sbin/:/usr/bin/:/usr/sbin/:/userdata/:/userdata/bin/:/data/bin/:/data/bin/pcba_test/

+Looking for ./openocd

+argv[1]="-f"

+argv[2]="./test.cfg"

+argv[3]="-s"

+argv[4]="scripts"

+Rename process to "openocd"

+Using native(wrapped) libusb-1.0.so.0

+Using emulated libhidapi-hidraw.so.0

+Using native(wrapped) libm.so.6

+Using native(wrapped) libutil.so.1

+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 native(wrapped) libbsd.so.0

+Using native(wrapped) libudev.so.1

+Error: Symbol libusb_dev_mem_alloc not found, cannot apply R_X86_64_JUMP_SLOT @0x1006828d0 (0x69156) in /userdata/x64-openocd/bin/openocd

+Error: Symbol libusb_dev_mem_free not found, cannot apply R_X86_64_JUMP_SLOT @0x100682ac8 (0x69546) in /userdata/x64-openocd/bin/openocd

+Open On-Chip Debugger 0.12.0+dev-00597-ga5a30519f (2024-08-03-11:02)

+Licensed under GNU GPL v2

+For bug reports, read

+        http://openocd.org/doc/doxygen/bugs.html

+Info : auto-selecting first available session transport "swd". To override use 'transport select <transport>'.

+Info : Listening on port 6666 for tcl connections

+Info : Listening on port 4444 for telnet connections

+Info : Using CMSIS-DAPv2 interface with VID:PID=0x0d28:0x0204, serial=012345ABCDEF

+3470|SIGSEGV @0x34dff070 (???(./openocd+0x5ff070)) (x64pc=0x69156/"???", rsp=0x7f8cfe2278), for accessing 0x69156 (code=1)

+RAX:0x000000004c9c21f0 RCX:0x000000004c9b1600 RDX:0x0000000000000200 RBX:0x000000004c9b1600

+RSP:0x0000007f8cfe2278 RBP:0x0000007f8cfe22a0 RSI:0x0000000000000200 RDI:0x000000004c9c21f0

+ R8:0x000000004c9b15a0  R9:0x0000007f8cfe21f0 R10:0x0000000000000001 R11:0x0000007f8cfe1d10

+R12:0x0000007f8cfe2a00 R13:0x000000004c93edc0 R14:0x0000000000000000 R15:0x0000000000000001

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

+Segmentation fault

+```

+

+I run `nm /usr/lib/libusb-1.0* | grep libusb_dev_mem_alloc` and it displayed:

+```

+0000000000004870 T libusb_dev_mem_alloc

+0000000000004870 T libusb_dev_mem_alloc

+0000000000004870 T libusb_dev_mem_alloc

+```

+This indicates that the symbol `libusb_dev_mem_alloc` does exist.
\ No newline at end of file
diff --git a/results/scraper/box64/1805 b/results/scraper/box64/1805
new file mode 100644
index 000000000..2277fee39
--- /dev/null
+++ b/results/scraper/box64/1805
@@ -0,0 +1,129 @@
+Missing symbols running AppImage on Asahi
+Hi!

+As the title says, I'm trying to run an AppImage on Asahi Linux. Specifically (if it matters) Cider, an Apple Music client, which uses Electron

+

+I first tried the `box64-asahi` package from the Fedora repos, but that kept throwing errors about a library `libgcc_s.so.1`, which I couldn't resolve. After, I complied it myself with the options recommended on [the docs](https://github.com/ptitSeb/box64/blob/main/docs/COMPILE.md) for M1 `-D M1=1 -D CMAKE_BUILD_TYPE=RelWithDebInfo`, and that had no such errors

+

+I'm getting further now, but I still have issues. I haven't done any additional configuration past just installing, but I haven't found any options that could (as far as I can see) resolve it, although I don't know a whole lot about emulation like this.

+I'm doing all this on a Macbook Air M2 with Fedora Asahi Remix

+

+Here's the full log:

+```

+$ box64 ~/Cider-linux-appimage-x64.AppImage 

+Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT PageSize:16384 Running on Blizzard-M2 Avalanche-M2 with 8 Cores

+Will use Hardware counter measured at 24.0 MHz emulating 3.0 GHz

+Params database has 89 entries

+Box64 with Dynarec v0.3.1 75bdb328 built on Sep  7 2024 13:23:18

+BOX64: Detected 48bits at least of address space

+Counted 87 Env var

+BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/home/calebwestaway/.local/bin/:/home/calebwestaway/bin/:/usr/local/bin/:/usr/bin/:/bin/:/usr/local/sbin/:/usr/sbin/:/sbin/

+Looking for /home/calebwestaway/Cider-linux-appimage-x64.AppImage

+Rename process to "Cider-linux-appimage-x64.AppImage"

+Using native(wrapped) libdl.so.2

+Using native(wrapped) libpthread.so.0

+Using native(wrapped) libz.so.1

+Using native(wrapped) libc.so.6

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

+Using native(wrapped) libutil.so.1

+Using native(wrapped) librt.so.1

+Using native(wrapped) libbsd.so.0

+Using native(wrapped) libfuse.so.2

+Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT PageSize:16384 Running on Blizzard-M2 Avalanche-M2 with 8 Cores

+Will use Hardware counter measured at 24.0 MHz emulating 3.0 GHz

+Params database has 89 entries

+Box64 with Dynarec v0.3.1 75bdb328 built on Sep  7 2024 13:23:18

+BOX64: Detected 48bits at least of address space

+Counted 92 Env var

+BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/tmp/.mount_Cider-5IKban/:/tmp/.mount_Cider-5IKban/usr/sbin/:/home/calebwestaway/.local/bin/:/home/calebwestaway/bin/:/usr/local/bin/:/usr/bin/:/bin/:/usr/local/sbin/:/usr/sbin/:/sbin/

+Looking for /tmp/.mount_Cider-5IKban/cider

+Rename process to "cider"

+Redirecting overridden malloc from symtab function for /tmp/.mount_Cider-5IKban/cider

+Using emulated /tmp/.mount_Cider-5IKban/libffmpeg.so

+Using native(wrapped) libdl.so.2

+Using native(wrapped) libpthread.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 native(wrapped) libnss3.so

+Using native(wrapped) libnssutil3.so

+Using native(wrapped) libsmime3.so

+Using native(wrapped) libnspr4.so

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

+Using native(wrapped) libatk-1.0.so.0

+Using native(wrapped) libatk-bridge-2.0.so.0

+Using native(wrapped) libSM.so.6

+Using native(wrapped) libICE.so.6

+Using native(wrapped) libXau.so.6

+Using native(wrapped) libxcb.so.1

+Using native(wrapped) libXdmcp.so.6

+Using native(wrapped) libcups.so.2

+Using native(wrapped) libdrm.so.2

+Using native(wrapped) libgtk-3.so.0

+Using native(wrapped) libgdk-3.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) libcairo.so.2

+Using native(wrapped) libX11.so.6

+Using native(wrapped) libXcomposite.so.1

+Using native(wrapped) libXdamage.so.1

+Using native(wrapped) libXext.so.6

+Using native(wrapped) libXfixes.so.3

+Using native(wrapped) libXrandr.so.2

+Using native(wrapped) libXrender.so.1

+Using native(wrapped) libgbm.so.1

+Using native(wrapped) libexpat.so.1

+Using native(wrapped) libxkbcommon.so.0

+Using native(wrapped) libasound.so.2

+Using native(wrapped) libatspi.so.0

+Using native(wrapped) libm.so.6

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

+Using native(wrapped) libc.so.6

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

+Using native(wrapped) libutil.so.1

+Using native(wrapped) librt.so.1

+Using native(wrapped) libbsd.so.0

+Warning: Weak Symbol ZSTD_trace_decompress_begin not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eb170 (0xa446246)

+Warning: Weak Symbol ZSTD_trace_decompress_end not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eb178 (0xa446256)

+Warning: Weak Symbol _ZTHN2v88internal12trap_handler21g_thread_in_wasm_codeE not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eb808 (0xa446f76)

+Warning: Weak Symbol _ZTHN2v88internal19RwxMemoryWriteScope31code_space_write_nesting_level_E not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eb810 (0xa446f86)

+Warning: Weak Symbol OPENSSL_memory_alloc not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eba48 (0xa4473f6)

+Warning: Weak Symbol OPENSSL_memory_free not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eba50 (0xa447406)

+Warning: Weak Symbol sdallocx not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eba58 (0xa447416)

+Warning: Weak Symbol OPENSSL_memory_get_size not found, cannot apply R_X86_64_JUMP_SLOT @0x10a9eba60 (0xa447426)

+14147|BOX64: Warning, calling Signal 4 function handler SIG_DFL

+Unhandled signal caught, aborting

+NativeBT: /tmp/.mount_Cider-5IKban/cider() [0x34878010]

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

+NativeBT: /lib64/libc.so.6(+0x987e0) [0xfffef03b87e0]

+NativeBT: /lib64/libc.so.6(gsignal+0x20) [0xfffef0365a00]

+NativeBT: /lib64/libc.so.6(abort+0xf8) [0xfffef0350288]

+NativeBT: /tmp/.mount_Cider-5IKban/cider() [0x3487335c]

+NativeBT: /tmp/.mount_Cider-5IKban/cider() [0x3487686c]

+NativeBT: /tmp/.mount_Cider-5IKban/cider() [0x34878ef4]

+NativeBT: /tmp/.mount_Cider-5IKban/cider() [0x351aa010]

+NativeBT: [0xfffeeaaa0c3c]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5de1e90 [0x105de1e90]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5de4217 [0x105de4217]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5df5bd1 [0x105df5bd1]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider(_Znwm+1f) [0x105df511f]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5d3043d [0x105d3043d]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5d932aa [0x105d932aa]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+5d931d4 [0x105d931d4]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider+248e001 [0x10248e001]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider(__libc_csu_init+45) [0x1023f4195]

+EmulatedBT: box64(ExitEmulation+0) [0x10080]

+EmulatedBT: /tmp/.mount_Cider-5IKban/cider(+2a) [0x10205202a]

+14147|SIGABRT @0xfffef03b87e0 (???(/lib64/libc.so.6+0x987e0)) (x64pc=0x105de1e90/"/tmp/.mount_Cider-5IKban/cider + 0x5de1e90", rsp=0xfffef00659f8, stack=0xfffeef868000:0xfffef0068000 own=(nil) fp=0xfffef00663c0), for accessing 0x3e800003743 (code=-6/prot=0), db=(nil)((nil):(nil)/(nil):(nil)/???:clean, hash:0/0) handler=(nil)

+RSP-0x20:0x0000000000000000 RSP-0x18:0x0000000000000000 RSP-0x10:0x0000000000000000 RSP-0x08:0x0000000000000000

+RSP+0x00:0x0000000000000000 RSP+0x08:0x0000000000000000 RSP+0x10:0x0000000000000000 RSP+0x18:0x0000000000000002

+RAX:0x0000000000000016 RCX:0x0000000000000000 RDX:0x0000fffef0528760 RBX:0x0000000000001000 

+RSP:0x0000fffef00659f8 RBP:0x0000fffef00663c0 RSI:0x0000fffef0350f60 RDI:0x0000fffef0066394 

+ R8:0x0000000000000000  R9:0x0000000000000001 R10:0x0000000000000001 R11:0x0000000000000010 

+R12:0x0000000000000003 R13:0x0000000000000000 R14:0x0000000000000003 R15:0x00003f5c00201000 

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

+Aborted (core dumped)

+```

+

+Thanks in advance for any help!
\ No newline at end of file
diff --git a/results/scraper/box64/1809 b/results/scraper/box64/1809
new file mode 100644
index 000000000..1157090aa
--- /dev/null
+++ b/results/scraper/box64/1809
@@ -0,0 +1,7 @@
+Error loading needed lib libhidapi-hidraw.so.0
+I can find `/usr/lib/libhidapi-hidraw.so.0` using `find / -name libhidapi-hidraw.so.0`

+```sh

+# find / -name libhidapi-hidraw.so.0

+/usr/lib/libhidapi-hidraw.so.0

+```

+but running box64 results in the error `Error loading needed lib libhidapi-hidraw.so.0`.
\ No newline at end of file