On Sun, Sep 25, 2011 at 09:52:00PM +0100, Christian Smith wrote:
> On Sun, Sep 25, 2011 at 11:08:38AM +0100, Katie Blake wrote:
> > 
> > I hope that this is the correct list to send this question.
> > I am trying to use SQLite on a Gumstix Linux module running Angstrom armv7l 
> > GNU/Linux.  (32-bit­).
> > 
> > I have installed the sqlite packages and can happily create and query a 
> > database using the sqlite command line.
> > 
> > I would like to access my database from some Java code ? and I am hitting 
> > some problems!
> > 
> > I see the error:
> > 
> > java: codegen.c:2036: codegen_emit: Assertion `(15) != 15' failed.
> > Aborted
> > 
> 
> This looks like a JVM error when trying to output JIT code.
>
> You might also want to investigate the error within the JVM from your JRE 
> vendor.

Oh, and try running the JVM in non-JIT mode. That will isolate the problem to 
the JVM JIT compiler, and at least allow you to continue testing:
        java -Djava.compiler=NONE ...

Christian
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to