BobPortmann / IDLCall.jl

Call IDL from Julia
Other
4 stars 4 forks source link

external libraries called in IDL code crashes julia #10

Open AndreWaehlisch opened 7 years ago

AndreWaehlisch commented 7 years ago

When I run the following code julia crashes. The same seems to occur with other external libraries which are loaded/called from IDL (I tried QHULL and a custom installed library for example).

I am using: julia Version 0.4.7 (tried with the new version 0.6 too: same error) OS: opensuse 42.2

julia> import IDLCall
IDL Version 8.2.3 (linux x86_64 m64). (c) 2013, Exelis Visual Information Solutions, Inc.
Installation number: ....
Licensed for use by: ...

julia> idl = IDLCall
IDLCall

julia> idl.execute("print, 1")
       1

julia> idl.execute("p = plot([1,2])")
julia: symbol lookup error: .../bin/bin.linux.x86_64/idl_png.so: undefined symbol: IDL_MessageDefineBlock

Where I have blanked (...) some stuff.