I use debian lenny. installed liblua50-dev and other libraries with synaptic..
write basic c program called init.c (from tutorials)..
[code]
#include #include "lua.h"
#include "lualib.h"
#include "luaxlib.h"
int main(int argc, char *argv[])
{
lua_State* L;
L = lua_open();
lua_baselibopen(L);
luaopen_table(L);
luaopen_io(L);
luaopen_string(L);
luaopen_string(L);
luaopen_math(L);
lua_close(L);
return 0;
}
[/code]
compiled with
[code]
gcc -o init -Wall 'lua-config --include --libs' init.c
[/code]
but I get the following errors can you help me what is the problem ..
[code]
gcc: lua-config --include --libs: No such file or directory
init.c:3:17: error: lua.h: No such file or directory
init.c:4:20: error: lualib.h: No such file or directory
init.c:5:21: error: luaxlib.h: No such file or directory
init.c: In function
Comments