lua-users home
lua-l archive

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




On 05/01/2015 11:15, Luiz Henrique de Figueiredo wrote:
that option also sets lua floating point numbers to 32bit, which
is unacceptable for my uses (I need IEEE 754 double precision arithmetic).

Try defining LUA_C89_NUMBERS instead of LUA_32BITS.
This will give you long integers and double floats.


Thanks for the suggestion! I'll give it a try, although the 64bit support was interesting and I hoped there was a way to preserve it without the performance loss.

I'll report back the results.

-- Lorenzo