Create .NET Distributable with Clojure -clr

I am interested in creating a .NET distribution with Clojure -clr, similar to using lein uberjar on jvm. I downloaded the Clojure -clr binaries https://github.com/clojure/clojure-clr/downloads and can run repl, however, if I run Clojure.Compile.exe the program freezes. Presumably Clojure.Compile.exe wants additional arguments, however I cannot find documentation on how to use it. Does anyone have experience or is this a dead project?

+6
source share
1 answer

I managed to compile https://github.com/kumarshantanu/lein-clr and closely monitor the quick start in 3 steps. I used Windows 8.1 with default .NET 4.5. To use the binary file Clojure.Compile.exe, you will need to look at the source code because exectuable does not display usage instructions when called without arguments.

+2
source

Source: https://habr.com/ru/post/957916/


All Articles