lua-users home
lua-l archive

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


> 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.