First you need to install Lua:
ubuntu> sudo apt-get install lua5.2
ubuntu> sudo apt-get install liblua5.2-dev
Then compile the source file:
ubuntu> gcc a.c -I/usr/include/lua5.2 -L/usr/lib/x86_64-linux-gnu -llua5.2
I had to make some adjustments in the source file. The adjusted source file is as follows:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <lua.h> | |
#include <lauxlib.h> | |
#include <lualib.h> | |
int main (void) { | |
char buff[256]; | |
int error; | |
lua_State *L = luaL_newstate(); /* opens Lua */ | |
luaL_openlibs(L); | |
while (fgets(buff, sizeof(buff), stdin) != NULL) { | |
error = luaL_loadbuffer(L, buff, strlen(buff), "line") || | |
lua_pcall(L, 0, 0, 0); | |
if (error) { | |
fprintf(stderr, "%s", lua_tostring(L, -1)); | |
lua_pop(L, 1); /* pop error message from the stack */ | |
} | |
} | |
lua_close(L); | |
return 0; | |
} |