Created
February 10, 2012 00:20
-
-
Save kiras/1784697 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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