diff options
Diffstat (limited to 'results/scraper/box64/241')
| -rw-r--r-- | results/scraper/box64/241 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/results/scraper/box64/241 b/results/scraper/box64/241 new file mode 100644 index 000000000..6c020814c --- /dev/null +++ b/results/scraper/box64/241 @@ -0,0 +1,39 @@ +Veloren - missing global symbols +``` +daniel@danielPi400 ~> ./Games/veloren/veloren-voxygen +Dynarec for ARM64, with extension: ASIMD CRC32 PageSize:4096 +Box64 with Dynarec v0.1.4 756fe29 built on Sep 5 2021 19:32:37 +Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/ +Using default BOX64_PATH: ./:bin/ +Counted 37 Env var +Looking for ./Games/veloren/veloren-voxygen +Using emulated /lib/x86_64-linux-gnu/libstdc++.so.6 +Using native(wrapped) libxcb.so.1 +Using native(wrapped) libxkbcommon-x11.so.0 +Using native(wrapped) libxkbcommon.so.0 +Using native(wrapped) libudev.so.1 +Using native(wrapped) libasound.so.2 +Using native(wrapped) libdl.so.2 +Using emulated /lib/x86_64-linux-gnu/libgcc_s.so.1 +Using native(wrapped) librt.so.1 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) libm.so.6 +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux-x86-64.so.2 +Error: Global Symbol snd_pcm_sw_params_set_tstamp_type not found, cannot apply R_X86_64_GLOB_DAT @0xffff913a2fb0 ((nil)) in ./Games/veloren/veloren-voxygen +Error: Global Symbol xkb_keymap_new_from_buffer not found, cannot apply R_X86_64_GLOB_DAT @0xffff913a3b68 ((nil)) in ./Games/veloren/veloren-voxygen +Error: Global Symbol posix_spawn_file_actions_addchdir_np not found, cannot apply R_X86_64_GLOB_DAT @0xffff913a3c00 ((nil)) in ./Games/veloren/veloren-voxygen +Error: Global Symbol xcb_discard_reply not found, cannot apply R_X86_64_GLOB_DAT @0xffff913a3f60 ((nil)) in ./Games/veloren/veloren-voxygen +Error: Global Symbol statx not found, cannot apply R_X86_64_GLOB_DAT @0xffff913a3f80 ((nil)) in ./Games/veloren/veloren-voxygen +1277|0xffff8ecdffa0: Unimplemented Opcode (FB) 64 8A 04 25 F8 FC FF FF 3C 01 74 2D 84 C0 0F +``` +From the error message, the following Global Symbols are not found; +- statx +- xcb_discard_reply +- posix_spawn_file_actions_addchdir_np +- xkb_keymap_new_from_buffer +- snd_pcm_sw_params_set_tstamp_type + +Veloren is an open source game but trying to natively compile it on an rpi4 4GB + 5GB swap got killed due to, I assume, a low memory killer so I tried box64 + +My device is a Raspberry Pi 400 running Manjaro Arm \ No newline at end of file |