Re: When do I need the .h and liblua.a files?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: When do I need the .h and liblua.a files?
- From: Gilles Ganault <gilles.ganault@...>
- Date: 2010年11月23日 12:02:44 +0100
On 2010年11月23日 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.