12-02-2013, 09:40 AM
LuaRocks itself does not have a lua shared library packaged with it. Instead, it just uses the Lua CLI.
If you are looking for the lua library on a linux machine, you could simply do the following from the command line:
Its not the most efficient way to find it, but that should give you the name of every file in the usr folder which is relavant to lua. And then you just pick through and find any ".so" or ".a" files.
If you can only find .a files, then there isn't a shared library available for lua.
If you are looking for the lua library on a linux machine, you could simply do the following from the command line:
Code:
cd /usr
find . "lua" | grep "lua"
If you can only find .a files, then there isn't a shared library available for lua.