C调用Lua -- 简单的解释器程序实现

3 篇文章 0 订阅

C调用Lua – 简单的解释器程序实现

November 5, 2015 10:57 PM

仿照*《Lua程序设计第二版》*ch24中的示例程序,在Lua 5.3.1版本下成功利用gcc编译运行了这段代码。

首先源代码程序如下

#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);                       /*opens the standard libraries*/

    while(fgets(buff, sizeof(buff), stdin) != NULL) {
        error = luaL_loadstring(L, buff) || lua_pcall(L, 0, 0, 0);
        if(error) {
            fprintf(stderr, "%s\n", lua_tostring(L, -1));
            lua_pop(L, 1);                  /* pop error message from the stack */
        }
    }

    lua_close(L);
    return 0;
}

在编译链接阶段出现了好多问题,总是有undefined reference to ...的错误出现。
最终使用gcc 24-1.c -o 24-1.exe -llua -lm -ldl命令成功编译,运行程序成功进入Lua环境。
至于-llua, -lm, -ldl选项的作用,请自行google。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值