lua-users home
lua-l archive

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


On Thu, 10 Jan 2002, Curt Carpenter wrote:

> Here's a larger list of warnings from VC7. Some of these are 64bit
> compatibility warnings, which I don't know if you care about (yet).

We do care about any kind of plataform. If it's ANSI C, it should run
Lua ;-)

You can avoid some of these warnings by adjusting llimits.h:

> /* an unsigned integer big enough to count the total memory used by Lua */
> typedef unsigned long lu_mem;

I supose you have to change that to "unsigned long long", or maybe "size_t".

-- Roberto