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
-
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.h
from Lua are included.Therefore it should be possible to use standard lua in its place? I modified the CMake configuration to accept a
LUA_DIR
with the Lua 5.4 source code instead of aLUAJIT_DIR
and 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