|
Here is my little project LuaVM ( https://github.com/xpol/luavm). Which provide pre-built Windows binaries (include 64 bit) with LuaRocks included. 1. Download and install 64 bit version2. Use `luavm use 5.1` to active Lua 5.1 (or `luavm use luajit-2.0` `luavm use luajit-2.1` for LuaJIT versions).3. Then use luarocks to install LuaSQL-MySQL. (You may need to install MySQL 64bit driver library for Windows (https://dev.mysql.com/downloads/connector/c/ ) and pass the install path to luarocks like: `luarocks install luasql-mysql MYSQL_DIR=/path/to/mysql`)Disclaimer: I have never used LuaSQL and LuaSQL-MySQL.On Thu, Nov 10, 2016 at 12:03 AM Diogo Mildenberger <diogo.milde@gmail.com> wrote:Where I mentioned LuaDist, I meant Lua Binaries (luabinaries.sourceforge.net). LuaDist seems to be in the second category.2016-11-09 13:49 GMT-02:00 Diogo Mildenberger <diogo.milde@gmail.com>:Hello,Is there a place where I can fetch pre-built Windows x64 binaries for Lua and LuaSQL?My code is currently Lua 5.1-compliant and uses luasql-mysql, but I hit memory limit for x86 process space.I am trying to find binaries (via http://lua-users.org/wiki/LuaDistributions and others), but it seems like there are:- Lua with LuaSQL, but x86 only (Lua for Windows - https://github.com/rjpcomputing/luaforwindows )- LuaJIT x64, with its own "mysql" module (Lua Power - https://luapower.com/)As of now I have no experience in Windows compilation of C code, I can't judge if it is going to take long.Given that the code that uses LuaSQL is rather small, I am considering porting it to use this module in LuaPower.Any Ideas?Thanks!Diogo