-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
Doesn't work on newer Linux #63
Comments
Is there a fix for this? I guess we should check if emacs 28.2 still has the same problem. |
I don't think there is any fix others than the LD_PRELOAD work-around. Long-term this will be fixed by building on a host VM with a more recent glibc but conda-forge has been very conservative in that regard, even sticking with CentOS 6 long past EOL. |
I guess one thing we can do is add a pin on |
It's not all the way incompatible though, the |
Hm. There is the
? Perhaps that allows us to determine the path needed, which we could put in a wrapper startup script. Alternatively it might be possible to hack the |
Does this help?
|
I don't have
What are my options for getting emacs working (without root access)? |
This happens because
malloc_set_state
has been removed fromglibc
:So actually this is not because of a change in conda-forge packaging but because of a change in the host operating system. You can work-around with
(assuming you have
/usr/lib/libc_malloc_debug.so
on the host OS, adjust as needed).Originally posted by @izahn in #60 (comment)
The text was updated successfully, but these errors were encountered: