lua-users home
lua-l archive

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


On Tue, Feb 10, 2009 at 12:44:35PM +0800, Ralf Peng wrote:
> Hello,
> 
> I have installed lua-5.1.4 from the sources which was downloaded from lua.org.
> After installtion I can't find the library of liblua5.so or liblua5.1.so.
> Could anyone help me? Thanks.
> 
> Ralf.

Lua doesn't build shared libraries by default, you need to build them
yourself if you want them (or get one of the autotool-izing patches the
distributions use) . The default lua makefiles only build the static
library (liblua.a).

    -Etan