-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 11/13/2010 04:47 PM, Madhan Kanagavel wrote:
> I am cross-compiling the standard SQLite amalgamation 3.7.3 using GCC 3.4.4 
> on 
> Linux for a MIPS big endian system. The cross-compiler uses uClibc as the 
> standard library.

I'd suggest trying with uClibc on your host first just to eliminate platform
issues.

> I see no errors and no other debug messages which give me a clue on what 
> could 
> be wrong.

The best you can do is compile with -g and -DSQLITE_DEBUG.  The latter will
enable all the assertions in the SQLite code which will catch logic issues.

If that doesn't catch anything then it is likely an I/O issue (eg doing a
write and then a read of the same area doesn't give the same data back).
You can enable I/O tracing by compiling with -DSQLITE_ENABLE_IOTRACE and
doing whatever else is required for it to output the traces.

Roger
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkzfOCQACgkQmOOfHg372QRjFQCgguaYtk3khtbxSVR21OyrqybV
f88AniGimkl1l2ZyNhJj+uMh9hjDotR2
=8BbS
-----END PGP SIGNATURE-----
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to