I've been trying to precompile my most used packages, but I keep getting
the error "UndefVarError(var=:STDERR)".
example error message:
error during bootstrap: LoadError(at "sysimg.jl" line 287: LoadError(at
"/Users/joshuajob/julia/base/userimg.jl" line 1: LoadError(at
"/Users/joshuajob/.julia/v0.3/Homebrew/src/Homebrew.jl" line 339:
UndefVarError(var=:STDERR))))
Any idea what's going wrong?
On Wednesday, July 30, 2014 8:45:08 PM UTC-7, Jose Augusto wrote:
>
> Hi
>
> Loading of julia modules (0.3.0-rc1) is a slow process (compared to other
> languages). This is more visible when in the process of running/debugging.
> Is there any way of speeding it up?
>
> TIA
>
> Jose
>
> Code:
>
>
> t1=time()
> println("start time: ",0)
> println("using DataFrames... slow loading...")
> using DataFrames
> t2=time()
> println("load time: ",t2-t1," secs")
> println("using PyPlot... slow loading...")
> using PyPlot
> t3=time()
> println("load time: ",t3-t2," secs")
> println("using Winston... slow loading...")
> using Winston
> t4=time()
> println("load time: ",t4-t3," secs")
>
>
> Result: (julia 0.3.0-rc1, AMD A8-3850 on Windows 7, 64 bits)
>
> C:\Users\...>julia timeLoading.jl
> start time: 0.0
> using DataFrames... slow loading...
> load time: 12.457000017166138 secs
> using PyPlot... slow loading...
> INFO: Loading help data...
> load time: 13.289999961853027 secs
> using Winston... slow loading...
> load time: 6.801000118255615 secs
>