|
|
|
|
|
by MattJ100
239 days ago
|
|
That's unusual that you struggled to build Lua. Lua is primarily C89, and used on non-POSIX microcontrollers for example. There are some optional bits of the standard library you would have to leave out - module loading uses dlopen(). This is done simply by defining the right feature macros for your target environment: https://www.lua.org/source/5.4/luaconf.h.html You may also be interested in this project: https://github.com/fengari-lua/fengari |
|