On Mon, Jul 7, 2008 at 9:06 PM, Shane Harrelson <[EMAIL PROTECTED]> wrote:
> Make sure SQLite isn't being compiled with -ffast_math on the the Debian
> side.  That might cause problems.

-ffast-math would not cause sqlite to bug out like described.

it lets the compiler reorder floating point expressions in a way that
might trivially change the output while being faster.  so (a * b + a *
c) would be transformed into (a*(b+c)), which could give different
results due to rounding.

-- 
Cory Nelson
http://www.int64.org
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to