vote up 9 vote down star

What could possibly cause this weird python behaviour?

Python 2.6.2 (r262:71600, May 31 2009, 03:55:41)
[GCC 3.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> .1
1251938906.2350719
>>> .1
0.23507189750671387
>>> .1
0.0
>>> .1
-1073741823.0
>>> .1
-1073741823.0
>>> .1
-1073741823.0
>>>

It gives the same output for 0.1, 0.5, 5.1, 0.0, etc.. Integers are echoed back at me correctly, but anything with a decimal point gives me the crazy numbers.

This is a python binary compiled for ARM, installed via Optware on a Synology DiskStation 101j.

Has anyone seen anything like this before?

flag

I have not seen it before, indeed it is wierd! – Mohamed Sep 3 at 4:48
very wiered! how is it happening? – Xolve Sep 3 at 5:37
Check Optware Homepage. I found there an article about Perl troubles with fp lib. – zxcat Sep 4 at 6:09

2 Answers

vote up 6 vote down

Maybe it's compiled for the wrong VFP version.

Or your ARM has no VFP and needs to use software emulation instead, but the python binary tries to use hardware.


EDIT

Your DS-101j build on FW IXP420 BB cpu, which is Intel XScale (armv5b) (link). It has no hardware floating-point support. And "b" in armv5b stands for Big Endian. Some people has build problems, because gcc generates little endian code by default. Maybe this is the problem of your software FP lib. Check this search for more info.

link|flag
vote up 0 vote down

As zxcat said, this sounds like you're running on an ARM with no hardware-floating point and a busted soft-float library. A quick search didn't turn up what ARM variant is in the DS101j; anyone know?

link|flag
Don't know, but I certainly wouldn't expect to see a hardware FP on a NAS box. – bobince Sep 3 at 16:33
3  
If you just want to comment on a solution, then add a comment, rather than a new solution. – Glenn Maynard Sep 3 at 19:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.