Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to distribute a Clojure program. Do I need a JDK or can a JRE handle everything in Clojure?

share|improve this question

3 Answers

up vote 9 down vote accepted

You only need the user to have a JRE (v1.5 or above)

Clojure programs can be compiled into a jar file. You don't have to use something like leiningen, but it's a lot easier.

Check out this page on the Clojure.org site for how to compile and run a program.

You can compile to a jar file from the REPL:

(compile 'clojure.examples.hello)

Here's how you would run a compile jar:

java -cp ./classes:clojure.jar clojure.examples.instance asdf
share|improve this answer
And will the Clojure "eval" command still work, even without a JDK? I don't understand how it could compile without a JDK – Zubair Jan 27 '11 at 9:25
2  
That's a good question. I think the answer is that the Clojure jar includes code that compiles Clojure to Java bytecode and does not use javac. – justinhj Jan 27 '11 at 18:36
2  
Pretty much yes. Here's the body of eval: (. clojure.lang.Compiler (eval form))). – Michael Kohl Jan 28 '11 at 18:04

You just need a JRE.

https://github.com/technomancy/leiningen/blob/master/TUTORIAL.md explains in more detail, but I believe you just want an "Uberjar" which will contain all the dependencies that you need to distribute your application.

share|improve this answer

JRE is required! You can easily download it from Internet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.