我试图编译在github上找到的luasocket 3。问题是,我不确定如何将Lualuasocket绑定在一起。我需要将luasocket编译为dll,然后引用lua代码中的某个地方,还是应该从lua控制台调用它?

最佳答案

尝试使用luarocks安装它。如果您没有luarocks,请按照网站上的说明安装它。
然后从luasocket repo下载rockspec文件(luasocket-scm-0.rockspec)并运行

$ luarocks install *path to the rockspec file*

如果一切顺利,您将能够像这样使用lua中的luasocket:
local socket = require "socket"
-- now you can use socket.xxx functions

07-25 22:47