Closed rened closed 11 years ago
cc: @loladiro
This is fixed in BinDeps master. I guess it's in not the version on METADATA.
You can get the master version easily by running Pkg.checkout("BinDeps")
.
@loladiro Do you want the current BinDeps' master version to be in METADATA? I'd be happy to make the pull request to do that if that's the case.
You can try out the brand new Pkg.tag("BinDeps")
functionality. I haven't yet added the ability to create a pull request automatically, but that will update METADATA for you.
Yeah, go ahead. I'm a little busy at the moment, otherwise I would have done it myself.
Thanks a lot! I still seem to get BinDeps related errors on both linux and mac, with deleted .julia, newest julia and packages:
full output of Pkg.add("HttpServer") on linux (64bit ubunut): https://gist.github.com/rened/6578625 full output on mac (10.8.4): https://gist.github.com/rened/6578645
I can get the mac version to build by manually setting the DYLD path, but get errors issuing "using HttpServer" as it cannot find libicucore
: https://gist.github.com/rened/6578708
To actually be able to run the mac version I have to even include /usr/lib in the DYLD path: https://gist.github.com/rened/6578740
No DYLD[_FALLBACK] envs are set, so they cannot interfere here.
It seems to be related to / to be the same as https://github.com/staticfloat/Homebrew.jl/issues/6
@rened; there was a typo in the URL of one of the files Homebrew was trying to download. Please run the following and try again on mac:
julia> Pkg.update()
julia> using Homebrew
julia> Homebrew.update()
Thank a lot, it works!
I could not make the BinDeps command MakeTargets to work, but simply issuing
make
directly works.