Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个预编译的 lua 脚本,我想将它们组合起来并转储到单个字节码块中。预编译的脚本可以相互依赖。
在 C 中,我可以使用:
luaL_loadfile// luaL_loadfile_lua_dump
luaL_loadfile
lua_dump
但我不确定如何使用 LuaJ 来做到这一点。我正在使用 luaj-3.0-alpha2 版本。
有任何想法吗?