I'm trying to compile a system image for Julia 0.3.1. My userimg.jl
contains Base.require("PyPlot.jl") and Make.user has
LDFLAGS=-L/path/to/anaconda/lib. The error trace I get is -
ERROR: LoadError(
in pyinitialize at /homes/mtikekar/.julia/v0.3/PyCall/src/PyCall.jl:456
in pyimport at /homes/mtikekar/.julia/v0.3/PyCall/src/PyCall.jl:105
in include at boot.jl:245
in include_from_node1 at loading.jl:128
in reload_path at loading.jl:152
in _require at loading.jl:67
in require at loading.jl:51
in include at boot.jl:245
in include_from_node1 at loading.jl:128
in include at boot.jl:245
in include_from_node1 at loading.jl:128
in process_options at client.jl:285
in _start at client.jl:354fatal: error thrown and no exception handler
available.
Base.TypeError(func=:task_local_storage, context="typeassert",
expected=Main.Base.ObjectIdDict, got=Base.ObjectIdDict(ht=Array{Any,
1}[:SOURCE_PATH, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>,
#<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>,
#<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>,
#<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>, #<null>,
#<null>]))
I looked at old issues similar to this
(https://github.com/JuliaLang/julia/issues/5802), but they seem to have
been solved. Any ideas on what I should do? I have been able to create a
system image with Gadfly and Images. But with PyPlot and ImageView I get
the above error.
Regards,
Mehul