LuaJIT: Difference between revisions
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
* [https://www.lua.org/pil/ LuaJIT » Programming in Lua] | * [https://www.lua.org/pil/ LuaJIT » Programming in Lua] | ||
* [https://repo.or.cz/w/luajit-2.0.git LuaJIT » SCM » Browsable] | * [https://repo.or.cz/w/luajit-2.0.git LuaJIT » SCM » Browsable] | ||
* [https://www.lua.org/docs.html LuaJIT » Documentation] | |||
* [https://github.com/LuaJIT/LuaJIT LuaJIT » SCM » GitHub] | * [https://github.com/LuaJIT/LuaJIT LuaJIT » SCM » GitHub] | ||
* [https://formulae.brew.sh/formula/luajit LuaJIT » Homebrew] | |||
* [https://luajit.org/download.html LuaJIT » Download] | * [https://luajit.org/download.html LuaJIT » Download] | ||
* [https://gudzpoz.github.io/luajava/ LuaJIT » LuaJava] | |||
* [https://luajit.org/install.html LuaJIT » Install] | * [https://luajit.org/install.html LuaJIT » Install] | ||
* [https://luajit.org/luajit.html LuaJIT] | * [https://luajit.org/luajit.html LuaJIT] | ||
| valign="top" | | | valign="top" | | ||
Line 30: | Line 30: | ||
* [https://www.lua.org/pil/1.html LuaJIT » Lua » Getting Started] | * [https://www.lua.org/pil/1.html LuaJIT » Lua » Getting Started] | ||
* [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://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] | ||
| valign="top" | | | valign="top" | | ||
Line 41: | Line 40: | ||
|- | |- | ||
| valign="top" | | | valign="top" | | ||
* [[Homebrew]] | |||
* [[HTTPie]] | |||
* [[JQ Tool]] | |||
* [[Locust]] | |||
* [[Wrk]] | |||
| valign="top" | | | valign="top" | |
Revision as of 19:09, 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
| ||