Skip to content

Instantly share code, notes, and snippets.

@kiras
Created February 10, 2012 00:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kiras/1784697 to your computer and use it in GitHub Desktop.
Save kiras/1784697 to your computer and use it in GitHub Desktop.
(defproject practice-001 "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojars.amu/lwjgl "2.8.2"]])
Then at "lein repl":
user=> (println (System/getProperty "java.library.path"))
/usr/java/packages/lib/amd64:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib
My understanding is that by default, :native-path is set to "native" and should appear in java.library.path, but this doesn't seem to be happening. I have tried setting :native-path to "native" directly, but this seems to have no effect. Am I missing something?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment