[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: luac.lua
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 14 Oct 2003 23:42:41 -0200
>I want to have some things explained
Ask away!
>well, I will see what I can do. Some thing that I want to do is replace all
>debug/trace calls (lua_DXX?) and tests with #ifdef LUA_WITHDEBUG. I'm not
>speaking about lua debug, but the "runtime" one. For example, the user make
>a source file and test, then compile it, and execute in my prog. If he do in
>script:
> print(x) -- x never declared
>He will have only an error msg, not a stack dump.
If you're using lua.c, simply do
function _TRACEBACK(x) return x end
>Please, the makefile in etc/Makefile has a problem, the compiler is called
>cc instead of $(CC), in luab: section.
Thanks, this has alreadu been spotted and fixed.
>Other thing is that when I decompress the tar.gz file the WinRar complies
>about symlinks, I imagine you made some ln -s, inside lua tree to your home
>dir?
Yes, lua and luac in test/. If these are trouble, we can remove them.
--lhf