LuaJIT: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<source lang="bash"> | |||
# 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 | |||
</source> | |||
==References== | ==References== | ||
{| | {| |
Revision as of 13:48, 30 October 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
| ||