Re: [fpc-devel] sqlite support for Android

2012-04-10 Thread Felipe Monteiro de Carvalho
Umm, I merged the pthreads Android fixes from bug 18833 to my built, rebuilt it and added cthreads to my uses clause but I still get the exact same crash inside libsqlite.so =( Any ideas? My crash is: UNCHER] flg=0x1020 cmp=com.pascal.lcltest/.LCLActivity bnds=[120,148][180,211] } D/AK8973

[fpc-devel] sqlite support for Android

2012-04-03 Thread Felipe Monteiro de Carvalho
Hello, In Android a dlopen operation without a full path will fail: sqliteDLL:=DlOpen('libsqlite.so',RTLD_LAZY); == fails sqliteDLL:=DlOpen('libsqlite3.so',RTLD_LAZY); == fails sqliteDLL:=DlOpen('/data/data/com.pascal.lcltest/lib/libsqlite3.so',RTLD_LAZY); == fails

Re: [fpc-devel] sqlite support for Android

2012-04-03 Thread michael . vancanneyt
On Mon, 2 Apr 2012, Felipe Monteiro de Carvalho wrote: Hello, In Android a dlopen operation without a full path will fail: sqliteDLL:=DlOpen('libsqlite.so',RTLD_LAZY); == fails sqliteDLL:=DlOpen('libsqlite3.so',RTLD_LAZY); == fails

Re: [fpc-devel] sqlite support for Android

2012-04-03 Thread Jonas Maebe
Felipe Monteiro de Carvalho wrote on Mon, 02 Apr 2012: In Android a dlopen operation without a full path will fail: A bit of googling suggests that the above statement is wrong: http://groups.google.com/group/android-ndk/browse_thread/thread/2779732b85fef9b3#f0cb99298fa286e1 Some help on

Re: [fpc-devel] sqlite support for Android

2012-04-03 Thread Felipe Monteiro de Carvalho
On Tue, Apr 3, 2012 at 11:47 AM, Jonas Maebe jonas.ma...@elis.ugent.be wrote: In Android a dlopen operation without a full path will fail: A bit of googling suggests that the above statement is wrong:

Re: [fpc-devel] sqlite support for Android

2012-04-03 Thread michael . vancanneyt
On Tue, 3 Apr 2012, Felipe Monteiro de Carvalho wrote: On Tue, Apr 3, 2012 at 11:47 AM, Jonas Maebe jonas.ma...@elis.ugent.be wrote: In Android a dlopen operation without a full path will fail: A bit of googling suggests that the above statement is wrong: