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
[ERR] mod_lua.cpp:202 /usr/local/share/lua/5.3/requests.lua:8: module 'xml' not found:
no field package.preload['xml']
no file '/usr/local/share/lua/5.3/xml.lua'
no file '/usr/local/lib/lua/5.3/xml.so'
stack traceback:
[C]: in function 'require'
/usr/local/share/lua/5.3/requests.lua:8: in main chunk
[C]: in function 'require'
[string "line"]:1: in main chunk
Compiling
lua-requests
on any modern distribution will fail with the following error on any modern Linux distribution:The problem is due to a C++ feature that was removed in C++17, which is used by newer versions of
gcc
. To get around this, you can either:g++
For more on the second option and how to update your
.rockspec
to do so, refer to this.The text was updated successfully, but these errors were encountered: