-
Notifications
You must be signed in to change notification settings - Fork 34
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
Not working, possibly because of multi arch readline libs #29
Comments
I was able to force it to use the patched readline version by running: LD_LIBRARY_PATH=/usr/lib ipython However, I got the following error:
I checked and noticed that
|
I'll look into this when I get a chance but I think this might be fixed in Alternately, with master and your path flag tweak, you can try looking in
|
Thanks @ardagnir for the quick response! I don't understand your alternative suggestion- what do you mean by looking in my libraries for vimbed? |
Vimbed is at $libdir/athame_readline. You might need to move it to the multiarch lib. |
This issue was solved once installed vimbed (using my plugin manager). |
Vimbed is installed in a lib dir so that it is only loaded by programs that need it at whatever versions they need. Athame is probably telling vim the wrong location for the lib because you changed the env variable, but since you installed a copy of vimbed with your plugin manager, vim is just using that one. |
The libdir flag should support this now without extra hackery |
I installed athame and tested it using ipython but it doesn't seem to work. I used
pmap
to verify that the ipython process indeed uses the system readline libs. I think the problem might be that I see two distinct readline libraries and one more symbolic links:/usr/lib/libreadline.so*
/lib/x86_64-linux-gnu/libreadline.so.*
/usr/lib/x86_64-linux-gnu/libreadline.so
->/lib/x86_64-linux-gnu/libreadline.so.6
Following the installation script, it seems that only the first one was patched (by the modification time of the file).
What's the best way to solve this?
Thanks!
The text was updated successfully, but these errors were encountered: