LuaJIT: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 17: | Line 17: | ||
* [https://www.lua.org/manual/5.4/ LuaJIT » Lua » Reference Manual] | * [https://www.lua.org/manual/5.4/ LuaJIT » Lua » Reference Manual] | ||
* [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 » | * [https://repo.or.cz/w/luajit-2.0.git LuaJIT » SCM » Browsable] | ||
* [https://github.com/LuaJIT/LuaJIT LuaJIT » | * [https://github.com/LuaJIT/LuaJIT LuaJIT » SCM » GitHub] | ||
* [https://luajit.org/download.html LuaJIT » Download] | * [https://luajit.org/download.html LuaJIT » Download] | ||
* [https://luajit.org/install.html LuaJIT » Install] | * [https://luajit.org/install.html LuaJIT » Install] |
Revision as of 09:49, 13 November 2023
# 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
| ||