[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: ARM series Lua implementation?
- From: pan shizhu <pan.shizhu@...>
- Date: Wed, 28 Oct 2009 10:01:42 +0800
On Wed, Oct 28, 2009 at 5:55 AM, David Given <dg@cowlark.com> wrote:
>
> In general, Lua is completely platform-independent and and needs no
> modification to Just Work on any 32-bit CPU with enough RAM.
>
That's not always the truth, Lua make extensive use of floating point,
so it is advisable to use integer as numbers for those CPU who do not
have hardware floating-point support.
Also, some CPUs do not support floating point at all and cannot
compile lua without any modification.
Generally, I compile lua with floating point only for x86 cpus which
have SSE support. for ARM and MIPS cpus it is better to use integer as
numbers.