-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't find vital functions 'abort' 'vfprintf' #18
Comments
I'm also running into this error and happen to also be running Gentoo. I'll be looking to pick through it and collect more info over the next several days. |
My current theory is that the high level of customization for build options in Gentoo is running afoul of some of the expectations of this library, where some of the glibc libraries may not be using the symbol hash format expected here. I'll be continuing to research and tinker though will somewhat be waiting and watching compilations while I work on other things. |
The above theory seems to be the case on my system at least: Mimick is written to look for the symbol table in a library with the DT_HASH tag which is presumably the sysv style hash format whereas my libc.so only has a DT_GNU_HASH which apparently includes some optimization around missing elements. Mimick should likely be adjusted to use either format though the |
Pull request #26 implements gnu_hash lookups - Can you see if the "gnuhash" branch on peadar/mimick fixes this? |
awesome, thanks! I'll try it out in the next day. |
The branch provided works well for me. @Cynerd? |
The test passes so I would say that it is fixed for me as well. Thank you very much. I am enthusiastically awaiting merge and new release. Thank you for fixing this. |
I am trying to use Mimick on Gentoo. I am not sure if this is generic issue of just Gentoo specific one as I have not tried it on any other distribution. I tried both latest master as well as v0.3.0 tag, it behaves the same way.
Simply even running
mmk_test
results in message:I encounter same behavior of course not only with test but every time I try to use mimick.
The text was updated successfully, but these errors were encountered: