lua-users home
lua-l archive

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


> I'm now down to 25K of code, after leaving out the standard libraries and the parser (using noparser.c).

Did you also leave out the dump module? There's a flag in noparser.c for that.
The dump module is tiny but when every byte counts, this may help. Also,
you can remove luaP_opnames in lopcodes.c, which is only needed for luac,
but that's only data, not code.
--lhf