[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Compilation problem with C embedded lua
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 28 May 2013 06:54:25 -0300
> I am getting compilation errors :: undefined reference to lua_open()
> and lua_dofile().
It seems you're using very old C code. Use luaL_newstate instead of
lua_open and luaL_dofile instead of lua_dofile.