-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
registerFns doesn't build when lang=lua54 #107
Comments
Actually this was already failing to build when I chose lang=lua53 but I thought luaL_findtable was indeed removed in 5.4 and I was suspecting I saw some kind of an incremental build bug with Zig. |
Yeah, I think it was still there in 5.3 but only when built for compat:
|
This seems closely related to #42 I think the issue here is that older versions of Lua use Also makes me wonder how we should handle |
I'm not sure what to do about In my code it was easy to work around that the function didn't compile, I just copied it into my own project:
|
Looks like there's no luaL_findtable in Lua 5.4 so the
registerFns
function fails to build.ziglua/src/lib.zig
Line 2813 in beb0b78
The text was updated successfully, but these errors were encountered: