This is on OS/X
I do have a workaround, but I'd like to get to the bottom of it. I don't
see anywhere in the code where either of these 2 libraries are loaded
explicitly --- maybe it's in loading sys.ji? My workaround can be to set
an env variable, but it would be better to understand and address the
problem directly.
If DYLD_LIBRARY_PATH is set to point to the Julia library directory, then
all works, but if this environment variable is not set, then the following
occurs
====
Warning: error initializing module LinAlg:
ErrorException("error compiling __init__: error compiling check_blas: error
compiling blas_vendor: could not load module libopenblas:
dlopen(libopenblas.dylib, 1): image not found")
Entropy pool not available to seed RNG; using ad-hoc entropy sources.
Warning: error initializing module Random:
ErrorException("could not load module libdSFMT: dlopen(libdSFMT.dylib, 1):
image not found")
===
Those additional errors I'm sure are just side effects cascading form
failing to load those libraries. The engine still does function, but the
linear algebra stuff is unavailable. I've tried various combinations of
jl_init and jl_init_with_image to no effect.
-Jeff