Now that Homebrew.jl has support for many more packages, I'm trying to get
AudioIO up to speed so portaudio and libsndfile can get installed more
automatically.
I'm getting Homebrew.jl to install the libraries using BinDeps, but it
looks like julia isn't finding libsndfile.dylib
#get the latest master to use Homebrew.jl
julia> Pkg.clone("git://github.com/ssfrr/AudioIO.jl.git")
julia> Pkg.build("AudioIO")
#from the shell
julia ~/.julia/AudioIO/test/runtests.jl
I get the error:
ERROR: error compiling af_open: error compiling af_open: could not load
module libsndfile: dlopen(libsndfile.dylib, 1): image not found
I checked to verify that libsndfile.dylib is in
~/.julia/Homebrew/deps/usr/lib.
How does Homebrew.jl communicate to julia that deps/usr/lib should be in
the library load path on a ccall?
peace,
s