gudzpoz / luajava

Lua for Java on Windows, Mac OS X, Linux, Android. 5.1, 5.2, 5.3, 5.4, LuaJ or LuaJIT.
https://gudzpoz.github.io/luajava/
Other
122 stars 14 forks source link

没有办法加载Lua的标准库 #162

Closed wuyoujian0313 closed 4 months ago

wuyoujian0313 commented 4 months ago

void luaJ_openlib(lua_State L, const char libName) { const luaL_Reg *lib = allAvailableLibs; for (; lib->func != NULL; lib++) { if (std::strcmp(lib->name, libName) == 0) { luaJ_openlib_call(L, lib->name, lib->func); return; } } }

这里不是有问题,因为没有办法加载Lua的标准库