Re: JIT Compilation on Android

2010-06-09 Thread Philip
George's modifications are a bit slow in compiling and require the App to have writing privileges to the /data folder. I have made a few patches to remedy that during my Bachelor's thesis and hope to be able to put them on github in July, but there are some things that have to be done first - main

Re: JIT Compilation on Android

2010-05-29 Thread MHOOO
Ah yes, applying the commits onto clojure master worked. Thanks! On May 29, 2:06 pm, Remco van 't Veer wrote: > The dalvikvm does not run java classes and has a different instruction > set.  That's why you need to do the dex step before deploying your code > on android. > > George Jahad did get a

Re: JIT Compilation on Android

2010-05-29 Thread Remco van 't Veer
The dalvikvm does not run java classes and has a different instruction set. That's why you need to do the dex step before deploying your code on android. George Jahad did get a repl/eval to run on android some time ago. See: http://groups.google.com/group/clojure/browse_thread/thread/14725172

Re: JIT Compilation on Android

2010-05-28 Thread B Smith-Mannschott
On Sat, May 29, 2010 at 05:44, MHOOO wrote: > I've got 1.2.0-master running on android froyo with a repl. Froyo > supports JIT compilation, but whenever I call code which is defining a > new class (e.g.: "(defn blub [] nil)"), I get an Exception: > -

JIT Compilation on Android

2010-05-28 Thread MHOOO
I've got 1.2.0-master running on android froyo with a repl. Froyo supports JIT compilation, but whenever I call code which is defining a new class (e.g.: "(defn blub [] nil)"), I get an Exception: - clojure.core=> (defn blub [] 1) java.lan