lua-users home
lua-l archive

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


>       In lua 5.1 , I found we can use luac -s to strip debug
>       information . But why the source file name is still in the
>       binary block ?

Lua needs a filename for error messages. We could replace the original
filename by "?" or something like that, but filenames do not take much 
space anyway in precompiled chunks (they appear once only).
Do you *need* to remove filenames?
--lhf