Re: Building clojure compiler in eclipse

2014-05-27 Thread Alex Miller
Yep, Java 1.6+ is required. We test with 1.6, 1.7, 1.8. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first

Building clojure compiler in eclipse

2014-05-26 Thread C K Kashyap
Hi, I am trying to build clojure using eclipse. After importing all the java sources under clojure/src/jvm into a java project I tried to run repl as a java application - Upon doing so, loadClassForName in RT.java throws class not found exception while trying to load clojure.core__init.class

Re: Building clojure compiler in eclipse

2014-05-26 Thread Alex Miller
You also need the Clojure core library source on your classpath, specifically the src/clj directory - that's where Clojure will look to load the core library .clj files. You might also set up your Eclipse project with an Ant builder on the build.xml to build the build target after clean. Or

Re: Building clojure compiler in eclipse

2014-05-26 Thread C K Kashyap
Thanks Alex ... I was able to import the whole thing into eclipse as an ant build project. I am still running into issues but I guess its because of java version ... I have to use 1.6 i think. Regards, Kashyap On Tue, May 27, 2014 at 2:32 AM, Alex Miller a...@puredanger.com wrote: You also