ztellman / penumbra

not under active development - idiomatic opengl bindings for clojure
354 stars 43 forks source link

Build instructions? #21

Closed dreish closed 14 years ago

dreish commented 14 years ago

Are there any build instructions more specific than http://wiki.github.com/ztellman/penumbra/getting-started ? On my latest attempt, when I get to lein native-deps, I get the following exception:

$ lein native-deps Exception in thread "main" java.lang.IllegalAccessError: make-dependency does not exist (native_deps.clj:1) at clojure.lang.Compiler.eval(Compiler.java:5435) at clojure.lang.Compiler.eval(Compiler.java:5410) at clojure.lang.Compiler.load(Compiler.java:5852) at clojure.lang.RT.loadResourceScript(RT.java:340) at clojure.lang.RT.loadResourceScript(RT.java:331) at clojure.lang.RT.load(RT.java:409) at clojure.lang.RT.load(RT.java:381) at clojure.core$load$fn__4504.invoke(core.clj:4893)

(etc., etc. for several pages)

Is there a particular version of Leiningen I need to use? I've tried both stable and master, and I get different problems with each, but I've never been able to get any of the example programs running no matter what I've tried. I'm on a Mac running OS X 10.6.4, java -version 1.6.0_20, and I've successfully built programs using jMonkeyEngine in the past, so I know lwjgl in general works on my machine.

ztellman commented 14 years ago

Sorry, there was a breaking change in Leiningen from 1.1 to 1.2, and I was referencing the version of native-deps that works with 1.1. I've updated the project.clj; run "lein deps" once more, and "lein native-deps" should work.

dreish commented 14 years ago

I see demos! Thanks!