I got the error undefined reference to 'luaL_newstate'
when I try to build my project. I know it's an error with the linker but I'm relatively new to Lua and adding a library to a project. I use Code::Blocks by the way. API functions luaL_openlibs
, luaL_loadfile
, lua_pcall
, lua_getfield
, lua_type
, lua_settop
are missing too.
I saw on a webite that I have to link my project with libdl in order to solve this problem, but I don't really know what it mean and how to do it.