[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua compilation with soft-float
- From: "John D. Ramsdell" <ramsdell0@...>
- Date: Sat, 4 Aug 2012 16:35:44 -0400
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