ptitSeb / box64

Box64 - Linux Userspace x86_64 Emulator with a twist, targeted at ARM64 Linux devices
https://box86.org
MIT License
3.85k stars 279 forks source link

random "Error: PltResolver: Symbol _dl_find_object(ver 18: _dl_find_object@GLIBC_2.35) not found" during minecraft bedrock server execution #410

Closed bennasar99 closed 14 hours ago

bennasar99 commented 2 years ago

I'm trying to run Minecraft bedrock dedicated server on android chroot arm64 and I get the following error, from time to time:

Error: PltResolver: Symbol _dl_find_object(ver 18: _dl_find_object@GLIBC_2.35) not found, cannot apply R_X86_64_JUMP_SLOT 0x7e319c0120 (0x7e319a4240) in libgcc_s.so.1 When it happens, the server freezes.

Is this something I can fix with libraries configuration or is it box64's fault?

Thanks in advance.

ptitSeb commented 2 years ago

This is a very recent function (_dl_find_object from glibc 2.35 it seems) that is not wrapped in box64 yet. The function is quite complex,, so I can add a dummy quickly but a real wrapped function is way more complicated.

In the mean time, maybe you can try to put an older version of libstdc++ / libgcc_s than the one supplied with the server (like the one supplied with box64). It might work better.

bennasar99 commented 2 years ago

Well, it seems to work now (with an older version of libgcc), so thanks!

Missatge de ptitSeb @.***> del dia dc., 21 de set. 2022 a les 8:52:

This is a very recent function (_dl_find_object from glibc 2.35 it seems) that is not wrapped in box64 yet. The function is quite complex,, so I can add a dummy quickly but a real wrapped function is way more complicated.

In the mean time, maybe you can try to put an older version of libstdc++ / libgcc_s than the one supplied with the server (like the one supplied with box64). It might work better.

— Reply to this email directly, view it on GitHub https://github.com/ptitSeb/box64/issues/410#issuecomment-1253281442, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABDU3OS547DTVG46MBTH7RLV7KWERANCNFSM6AAAAAAQRPM7X4 . You are receiving this because you authored the thread.Message ID: @.***>

LukeShortCloud commented 14 hours ago

Closing as resolved.