Re: AOT Compilation for Contrib

2008-12-03 Thread Drew Olson
On Wed, Dec 3, 2008 at 5:27 PM, Stephen C. Gilardi <[EMAIL PROTECTED]> wrote: Buildfile: build.xml > > init: > [mkdir] Created dir: /ext/clojure-contrib/classes > > compile_clojure: > [java] Compiling clojure.contrib.command-line to /ext/clojure- > contrib/classes > [java] Comp

Re: AOT Compilation for Contrib

2008-12-03 Thread Stephen C. Gilardi
On Dec 3, 2008, at 4:23 PM, Meikel Brandmeyer wrote: > I think your initial suggestion, is a good idea. I changed the > build.xml file to look for a property called clojure.jar. If it > exists, we use it and compile the libraries. Otherwise - well - > we don't... > > Invocation: ant -Dclojure.ja

Re: AOT Compilation for Contrib

2008-12-03 Thread Meikel Brandmeyer
Hello Stephen, Am 03.12.2008 um 20:35 schrieb Stephen C. Gilardi: Can we make clojure-contrib/build.xml work such that if you specify a location for a clojure.jar as a property, it compiles (the stand-alone compilable parts of ) clojure-contrib into clojure-contrib.jar, but if you don't specify

Re: AOT Compilation for Contrib

2008-12-03 Thread Stephen C. Gilardi
On Nov 28, 2008, at 5:07 PM, Meikel Brandmeyer wrote: > Hi, > > I'm kind of lost with the latest works on the compiler. > However here is a short patch, which modifies build.xml > of contrib to also compile the sources. [...] > The build.xml adds all jar files in the path given by > the CLOJURE

Re: AOT Compilation for Contrib

2008-12-01 Thread Juergen Gmeiner
Hello, > - javalog: wants some GLOBAL_LOGGER_NAME, which >    I can't find anywhere. So someone with more Java >    background wants to have a look? GLOBAL_LOGGER_NAME is Java 6. In Java 5, there is java.util.logging.Logger/global which is deprecated in Java 6. diff --git a/src/clojure/contri

Re: AOT Compilation for Contrib

2008-11-28 Thread Meikel Brandmeyer
Hi again, Am 28.11.2008 um 23:07 schrieb Meikel Brandmeyer: It's not perfect, though. The following packages are not compiled: I missed enum. That one uses gen-and-load-class in some dynamic way... Sincerely Meikel smime.p7s Description: S/MIME cryptographic signature

AOT Compilation for Contrib

2008-11-28 Thread Meikel Brandmeyer
Hi, I'm kind of lost with the latest works on the compiler. However here is a short patch, which modifies build.xml of contrib to also compile the sources. It's not perfect, though. The following packages are not compiled: - javalog: wants some GLOBAL_LOGGER_NAME, which I can't find anywhere.