mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #233] relocation error: symbol pthread_getattr_np, version GLIBC_2.2.5 not defined in file libpthread.so.0 with link time reference #107
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cnut1648 on GitHub (Aug 4, 2022).
Original GitHub issue: https://github.com/bootandy/dust/issues/233
Hello,
I would like to use dust for my remote server (without root). I unzipped the executable from release. But when I ran it throwed
After some googling, I figured this was caused by system-installed
glibcversion being too low. So I installedgcc 11.3.0andglibc 2.35from the source. Since I do not have root permission, from this question I learned to use patchelf to inject theglibcpath:I thought it would solve every issue but no, there was again one more issue:
But I do have a
libpthread.so.0in/path/to/glibc/lib.Does anyone have any clue about this issue? Thanks!
@cnut1648 commented on GitHub (Aug 5, 2022):
Turns out I need a
set-interpreterflag as well. Closing the issue.