Open maacl opened 12 years ago
I think the native deps situation has improved a little bit in the lein preview branch. I'll try redoing the setup there and bump the version to use it.
Unfortunately, I can't look into this too much more for a little while. I started a new branch, lein2, with some new dependencies. It's still not working, but it's a start.
Ok. Looking forward to this being solved. I have given up fixing this myself for now.
/mac
On Sun, May 27, 2012 at 4:29 PM, Joseph Abrahamson < reply@reply.github.com
wrote:
Unfortunately, I can't look into this too much more for a little while. I started a new branch, lein2, with some new dependencies. It's still not working, but it's a start.
Reply to this email directly or view it on GitHub: https://github.com/tel/ezmq/issues/1#issuecomment-5953863
First of all thanks for doing this. I have had nothing but trouble trying to get zmq working from Clojure.
I get:
no jzmq in java.library.path [Thrown class java.lang.UnsatisfiedLinkError]
when trying to reuire ezmq from within my project.
I am on OS X and I have run lein deps and lein native-deps. My project.clj looks like this:
(defproject ztest "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.3.0"] [ezmq "0.0.1"]] :dev-dependencies [[native-deps "1.0.5"]] :native-dependencies [[org.clojars.starry/jzmq-native-deps "2.0.10"]] :native-path "/usr/local/lib")
I have built zmq using brew install zmq and it works from Python.
Any ideas?