mkottman / AndroLua

Lua and LuaJava ported to Android
MIT License
1.06k stars 294 forks source link

fatal error: lua.h: No such file or directory #18

Open k-lam opened 9 years ago

k-lam commented 9 years ago

i use android studio when i try to build(gradlew assembleRelease) failed /AndroLua/app/src/main/jni/luajava/luajava.c:40:17: fatal error: lua.h: No such file or directory

include "lua.h"

xingchch commented 9 years ago

To fix this issue. you just need to install lua from source code on you platfrom . so the lua.h will add into the include file.

curl -R -O http://www.lua.org/ftp/lua-5.3.1.tar.gz tar zxf lua-5.3.1.tar.gz cd lua-5.3.1 make linux test

just read the official webpage of lua.