hi, I update julia packages on my Osx. After the update, I got an error about building "zmq" and "nettle"...it could not build them again. So, I removed .julia directory and re-installed from scratch and noticed that when I add IJulia, during its installation, it reaches the build of zmq and nettle and can not do it.
INFO: Building Nettle ===============================[ ERROR: Nettle ]================================ ccall: could not find function jl_uv_dlopen while loading /Users/nima/.julia/v0.3/Nettle/deps/build.jl, in expression starting on line 38 ================================================================================ INFO: Building ZMQ =================================[ ERROR: ZMQ ]================================= ccall: could not find function jl_uv_dlopen while loading /Users/nima/.julia/v0.3/ZMQ/deps/build.jl, in expression starting on line 21 ================================================================================ line 38 and line 21 are both calling BinDeps: @BinDeps.install [:nettle => :nettle] @BinDeps.install [:zmq => :zmq] what is jl_uv_dlopen? why it can not be found while I have BinDeps? any ideas? Cheers -n ps. this is the output of C library links: ~ nima$ otool -L $(which curl) /usr/bin/curl: /usr/lib/libcurl.4.dylib (compatibility version 7.0.0, current version 8.0.0) /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.5) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1) ~ nima$ otool -L /Applications/Julia-0.3.0.app/Contents/Resources/julia/libexec/git-core/git-remote-https /Applications/Julia-0.3.0.app/Contents/Resources/julia/libexec/git-core/git-remote-https: /usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 1.2.5) /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0) /usr/lib/libcrypto.0.9.8.dylib (compatibility version 0.9.8, current version 50.0.0) /usr/lib/libcurl.4.dylib (compatibility version 7.0.0, current version 8.0.0) /usr/lib/libexpat.1.dylib (compatibility version 7.0.0, current version 7.2.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1197.1.1)
