|
Yes! I didn't even think of that.
I guess I need to try the files in source-code form.On Sun, Aug 10, 2008 at 12:09 PM, Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> wrote:
> The problem seems to be with using literal numbers. If I do:How do you log what you get?
>
> i = 1
>
> and then log what I is, I get:
>
> = 5.2998088236266e-315
It seems to me to be an endianness problem. On big endian machines, you get
1 = 3FF0000000000000
5.2998088236266e-315 = 000000003FF00000
(both 8-byte doubles)
Are you using luac on the PC and then transfering the result to the ARM?