mirror of https://github.com/rusefi/lua.git
comments
This commit is contained in:
parent
c8da3fbc35
commit
0b6cfea005
22
luaconf.h
22
luaconf.h
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: luaconf.h,v 1.231 2014/12/10 11:56:55 roberto Exp roberto $
|
** $Id: luaconf.h,v 1.232 2014/12/12 11:49:32 roberto Exp roberto $
|
||||||
** Configuration file for Lua
|
** Configuration file for Lua
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -20,18 +20,18 @@
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** {==================================================================
|
** {====================================================================
|
||||||
** System Configuration: macros to adapt (if needed) Lua to some
|
** System Configuration: macros to adapt (if needed) Lua to some
|
||||||
** particular platform, for instance compiling it as Small Lua (32
|
** particular platform, for instance compiling it with 32-bit numbers or
|
||||||
** bits) or restricting it to C89.
|
** restricting it to C89.
|
||||||
** ===================================================================
|
** =====================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ LUA_32BITS enables Small Lua (that is, Lua with 32-bit integers
|
@@ LUA_32BITS enables Lua with 32-bit integers and 32-bit floats. You
|
||||||
** and 32-bit floats). You can also define LUA_32BITS in the make file,
|
** can also define LUA_32BITS in the make file, but changing here you
|
||||||
** but changing here you ensure that all software connected to Lua will
|
** ensure that all software connected to Lua will be compiled with the
|
||||||
** be compiled with the same configuration.
|
** same configuration.
|
||||||
*/
|
*/
|
||||||
/* #define LUA_32BITS */
|
/* #define LUA_32BITS */
|
||||||
|
|
||||||
|
@ -102,8 +102,8 @@
|
||||||
** the type for Lua floats.
|
** the type for Lua floats.
|
||||||
** Lua should work fine with any mix of these options (if supported
|
** Lua should work fine with any mix of these options (if supported
|
||||||
** by your C compiler). The usual configurations are 64-bit integers
|
** by your C compiler). The usual configurations are 64-bit integers
|
||||||
** and 'double' (the default), 32-bit integers and 'float' (Small Lua,
|
** and 'double' (the default), 32-bit integers and 'float' (for
|
||||||
** for restricted platforms), and 'long'/'double' (for C compilers not
|
** restricted platforms), and 'long'/'double' (for C compilers not
|
||||||
** compliant with C99, which may not have support for 'long long').
|
** compliant with C99, which may not have support for 'long long').
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue