[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Where is 'luavs.bat' in 5.2
- From: Roberto Ierusalimschy <roberto@...>
- Date: Wed, 8 Jan 2014 17:04:09 -0200
> > -----Original Message-----
> > From: lua-l-bounces@lists.lua.org [mailto:lua-l-bounces@lists.lua.org] On
> > Behalf Of Luiz Henrique de Figueiredo
> > Sent: woensdag 8 januari 2014 0:49
> > To: Lua mailing list
> > Subject: Re: Where is 'luavs.bat' in 5.2
> >
> > It's now at http://www.lua.org/extras/5.2/ . Thanks for the nudge.
>
> Thanks for supplying it, but did you test it?
>
> When opening the command prompt and setting the environment (on Win7 x64);
>
> > setenv /x86 /win7
>
> And then calling luavs.bat I get;
>
> > c1 : fatal error C1083: Cannot open source file: 'print.c': No such file or directory
Just remove 'print.c' from that line. (I do not know why it is there.)
> > lgc.c(988) : warning C4146: unary minus operator applied to unsigned type, result still unsigned
>
>
> If I set it to /x64 then I also get;
>
> > lgc.c(462) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
Both "warnings" are just telling us that C is doing what it is supposed
to do. We really do not know how to avoid them.
-- Roberto