From: Alex P. <pes...@ma...> - 2012-08-02 07:49:38
|
On 08/01/12 18:56, JLM wrote: > I've got news ! > When I use the Debug version of libfbclient, there is no errors, it runs > perfectly, all the time. > > So, maybe the optimization of the release's code go a bit too far ? > Quite possible. Please try to decrease optimization level in builds/posix/make.android.arme. There is line OPTIMIZE_FLAGS=-O3 -fno-omit-frame-pointer -O0 instead -O3 will be good first attempt. > PS : How to see debug messages ? There is no more message in the > console than the release version... > Debug build does not mean a lot of debugging output - one will die in them. That's a lot of assertions, some additional checks and no optimization. Debug output can be turned on in separate modules when required. |