Re: JIT Compiler crash on IBM JDK 6

2013-03-26 Thread Paudi Moriarty
Thanks for that, I'll have a look. Think it was SR3 on x86_64 I tried. On Tuesday, 26 March 2013 16:09:43 UTC, Thomas wrote: > > > > On Tuesday, March 26, 2013 3:19:08 PM UTC, Paudi Moriarty wrote: >> >> Hi Thomas, >> >> This is occuring on every Linux

Re: JIT Compiler crash on IBM JDK 6

2013-03-26 Thread Paudi Moriarty
Hi Thomas, This is occuring on every Linux and AIX version I've tried, SR9, SR11 and SR12. I tried Java 7 but it seems Clojure is very broken on IBM Java 7. Getting ClassFormatErrors when building Clojure itself there! Paudi On Tuesday, 26 March 2013 14:38:44 UTC, Thomas wrote: > > Hi Paudi, >

JIT Compiler crash on IBM JDK 6

2013-03-26 Thread Paudi Moriarty
Hi, I'm hitting a JIT compiler bug in IBM JDK 6 with the following code (forcing JIT compilation using -Xjit:count=0): (defprotocol FooProtocol (do-something [x])) (def foo (reify FooProtocol (do-something [this] (locking this (println "XXX") (do-s

Re: core.match and AOT

2012-10-16 Thread Paudi Moriarty
See http://dev.clojure.org/jira/browse/MATCH-63 for details. Paudi On 15 October 2012 23:21, David Nolen wrote: > On Mon, Oct 15, 2012 at 5:09 PM, Paudi Moriarty < > pmoria...@annadaletech.com> wrote: > >> It's broken since alpha10, alpha9 works fine. >> >&

Re: core.match and AOT

2012-10-15 Thread Paudi Moriarty
It's broken since alpha10, alpha9 works fine. Paudi On Sunday, 14 October 2012 18:19:28 UTC+1, David Nolen wrote: > > On Sat, Oct 13, 2012 at 6:43 PM, Michael > > wrote: > > core.match is alpha and has the following documentation note: > > > > "if your project depends on AOT do not use core.m

Re: OSGi manifest creation for Clojure projects

2012-03-17 Thread Paudi Moriarty
it. > > I shall say it's working quite great, but I'm open to cleaner solutions if > they do not require much overhead. > > 2012/3/17 Paudi Moriarty > It would be nice to setup a repository of Clojure bundles somewhere since the > bundling process is now pretty strai

Re: OSGi manifest creation for Clojure projects

2012-03-17 Thread Paudi Moriarty
It would be nice to setup a repository of Clojure bundles somewhere since the bundling process is now pretty straightforward. I have to use AOT as I can't ship source so The protocol issue with AOT is a bit frustrating. We end up having to AOT every bundle. This is acceptable to me as I have t

Re: Persistent collections and garbage collection

2012-02-08 Thread Paudi Moriarty
Hi Ron, I think the persistent collections are no different from any other collections from a GC perspective in that you control which references you keep and for how long in your code. After "modification" some nodes may no longer be referenced and will be eligible for GC so I'm not sure what you

Re: New to Clojure

2011-06-09 Thread Paudi Moriarty
And don't forget 'How to Design Programs' - http://www.htdp.org Paudi On 9 June 2011 11:04, Bhinderwala, Shoeb wrote: > To start thinking functionally, I would also highly recommend reading the > book Structure and Interpretation of Computer Programs: > > http://mitpress.mit.edu/sicp/ > > > ht