Replies: 1 comment 2 replies
-
|
I would just open a PR, ideally we can test it there but I suspect adding more LUA tests would be appreciated too. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
After searching for
include "luajit.h"in the codebase, it seems to me that the LuaJIT C API is NOT actually used.Under the directories
src/andplugins/only the standard"lua.h""lauxlib.h""lualib.hfrom Lua are included.Therefore it should be possible to use standard lua in its place? I modified the CMake configuration to accept a
LUA_DIRwith the Lua 5.4 source code instead of aLUAJIT_DIRand the lua filter seems to work fine.Therefore I just wanted a confirmation that there isn't actual use of LuaJIT?
Because then I could open a PR for adding Lua5.4 support in the build.
Beta Was this translation helpful? Give feedback.
All reactions