lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Fri, Aug 3, 2012 at 10:51 AM, Aniruddha A <aniruddha.a@gmail.com> wrote:

> I am trying to build and use Lua on a platform where hardware FP
> support is not present

If your Lua code only uses integers, the following patch will make it
so that lua_Number is a long instead of a double.  The patch is from
2006, so you may have to use an older version of Lua.

http://www.ccs.neu.edu/home/ramsdell/tools/lua-5.1-no-fp.patch

John