Paul H. Hargrove, le Wed 01 Feb 2012 20:18:59 +0100, a écrit : > So if qemu's emulation were at fault, then one would expect more wide-spread > problems and a generally unstable system. > While -mabi=64 is not the default in user-space, it IS the way the linux > kernel is built and thus should be well tested.
Except that it does not use floating point operations. I've commited a "fix". It makes the failures change. I got fun things with the mips64 libc: fprintf(stderr,"%f\n", min_distance); fprintf(stderr,"%f\n", accuracy); fprintf(stderr,"%f %f\n", min_distance, min_distance); fprintf(stderr,"%f %f\n", min_distance, accuracy); will print 2.0 0 2.0 2.0 0.0 0.0 ! It seems lenny on qemu-mips64 is not really stable with floats yet :) Samuel