码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu16.04环境下fatal error: lua.h: No such file or directory

时间:2020-12-22 12:31:57      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:loading   ima   rect   src   lua   ror   string   fat   png   

1.apt-get install liblua5.1-0-dev

2.编辑hello.c

#include "lua.h"
#include "lauxlib.h"
int main(int argc, char **argv)
{
    lua_State *L = luaL_newstate();
    luaL_openlibs(L);
    luaL_dostring(L, "print(‘hello, ‘.._VERSION)");
    return 0;
}

3.gcc -I/usr/include/lua5.1 -o hello hello.c -llua5.1 -lm

4../hello

技术图片



 

ubuntu16.04环境下fatal error: lua.h: No such file or directory

标签:loading   ima   rect   src   lua   ror   string   fat   png   

原文地址:https://www.cnblogs.com/still-smile/p/14150434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!