-
Notifications
You must be signed in to change notification settings - Fork 80
Precompile error, missing symbol in libpango.so #531
Comments
Can you please show the output of using Libdl
filter(lib ->occursin("libpangoft2", lib), dllist()) after you get this error, in the same Julia session. I suspect another library is being picked up. |
Same Julia session, |
That's... weird. Ok, let's try to show something more. Always same session: using Libdl
filter(lib ->occursin("pango", lib), dllist()) |
Same as before |
I must say I have a hard time believing that, since |
Do you set environment variables like |
I have set LD_LIBRARY_PATH in my zshrc to "/lib:/usr/lib:/usr/local/lib", and yes, the file does exist |
Does it work if you don't set
That confirms that the system library is being picked up. Maybe because of setting |
|
Does that happen in a fresh Julia session? I really have a hard time figuring out under which conditions you can get this error, and the fact that |
even in a fresh Julia session it returns |
No doubt there is no How did you install Julia? After you get the error, can you simply print all loaded libraries? using Libdl
println.(dllist()); It's easier than looking one by one for the faulty one. |
I installed Julia from the official website, and in origin I didn't install any package before Gtk (in that session) Ok, I don't know how, but now it compiles, I didn't update anything... |
I had the same issue but it resolved itself with ENV["LD_LIBRARY_PATH"] == "/usr/lib/:/usr/lib64/" and pango is at |
I don't know what error you're getting, but the point is that you shouldn't be using the system library |
Traceback:
To be honest, I don't have the minimum idea of what I have to do
The text was updated successfully, but these errors were encountered: