You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Loading native C modules is currently broken on windows as:
The lua library is not present at a location where it can be seen by lua at runtime
lua.exe is linked statically (not against luaxx.dll) causing "multiple lua VMs" in some occasions (e.g. when trying to load luasocket on Lua 5.2)
Example log when trying to load luasocket:
D:/a/luasocket/luasocket/.lua/bin\lua.exe: error loading module 'socket.core' from file 'C:\Users\runneradmin\AppData\Roaming/luarocks/lib/lua/5.2/socket\core.dll':
The specified module could not be found.
stack traceback:
[C]: in ?
[C]: in function 'require'
...radmin\AppData\Roaming/luarocks/share/lua/5.2/socket.lua:12: in main chunk
[C]: in function 'require'
mimetest.lua:1: in main chunk
[C]: in ?
D:/a/luasocket/luasocket/.lua/bin\lua.exe: error loading module 'socket.core' from file 'C:\Users\runneradmin\AppData\Roaming/luarocks/lib/lua/5.2/socket\core.dll':
The specified module could not be found.
The text was updated successfully, but these errors were encountered:
Loading native C modules is currently broken on windows as:
lua
at runtimelua.exe
is linked statically (not againstluaxx.dll
) causing "multiple lua VMs" in some occasions (e.g. when trying to load luasocket on Lua 5.2)Example log when trying to load luasocket:
The text was updated successfully, but these errors were encountered: