Re: Clojure *compile-path* not set properly

2011-03-07 Thread Armando Blancas
Oops -- I got the class and compile paths mixed up. But I wonder why that worked in the OP. On Mar 7, 6:27 pm, Stuart Sierra wrote: > The Java system property "clojure.compile.path" is the directory where the > Clojure compiler will write out .class files.  It should be one directory > name, not

Re: Clojure *compile-path* not set properly

2011-03-07 Thread Stuart Sierra
The Java system property "clojure.compile.path" is the directory where the Clojure compiler will write out .class files. It should be one directory name, not a list. When Clojure starts, it sets the Var *compile-path* to the value of the Java system property. The default is the directory nam

Re: Clojure *compile-path* not set properly

2011-03-07 Thread Armando Blancas
That's the default. You'd usually use the sys env clojure.compile.path for the repl (on windows): >java -Dclojure.compile.path=".;src;classes" -cp clojure.jar clojure.main Clojure 1.2.0 user=> *compile-path* ".;src;classes" On Mar 6, 5:32 pm, MC Andre wrote: > Clojure can't find and compile my