lua-users home
lua-l archive

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


On Tue, 23 Nov 2010 10:54:26 +0000, Rob Kendrick <rjek@rjek.com>
wrote:
>These headers provide the API.  You don't need them at runtime, no, but
>you will need them to compile your program that embeds Lua.

I won't use Lua in embedded mode, so it looks like I can trim things
down by just providing the "lua" interpreter and the scripts in source
code. The scripts are small enough that I don't need to pre-compile
them into bytecode with the "luac" compiler.

Thank you.