LuaJIT: Difference between revisions
Jump to navigation
Jump to search
Line 33: | Line 33: | ||
* [https://www.lua.org/manual/5.4/manual.html LuaJIT » Lua » Basic Concepts] | * [https://www.lua.org/manual/5.4/manual.html LuaJIT » Lua » Basic Concepts] | ||
* [https://redis.io/docs/interact/programmability/eval-intro/ LuaJIT » Lua » Redis Scripting] | * [https://redis.io/docs/interact/programmability/eval-intro/ LuaJIT » Lua » Redis Scripting] | ||
* [https://github.com/wg/wrk/tree/master/scripts LuaJIT » Lua » Wrk » Scripts] | |||
* [https://www.linode.com/docs/guides/lua-vs-python/ LuaJIT » Lua vs Python] | * [https://www.linode.com/docs/guides/lua-vs-python/ LuaJIT » Lua vs Python] | ||
* [https://api7.ai/learning-center/openresty/luajit-vs-lua LuaJIT » Lua vs. LuaJIT] | * [https://api7.ai/learning-center/openresty/luajit-vs-lua LuaJIT » Lua vs. LuaJIT] |
Revision as of 19:44, 31 January 2024
# macos
brew install luajit
luajit --help
# debian / ubuntu
sudo apt install build-essential libssl-dev git -y
git clone https://github.com/LuaJIT/LuaJIT.git && cd LuaJIT
sudo make install && ls -lah /usr/local/bin|grep luajit
sudo make clean
luajit --help
References
| ||