Reputation: 29316
I tried to use the following command:
curl -R -O http://www.lua.org/ftp/lua-5.2.0.tar.gz
tar zxf lua-5.2.0.tar.gz
cd lua-5.2.0
make macosx test install
(But with 5.2.1 obviously)
But it says it doesn't know the command make
.
Upvotes: 0
Views: 718
Reputation: 76240
You need to install XCode in order to have the make
command.
Then go to: Preferences and then Downloads and install a component named "Command Line Tools".
Finally run Install Xcode.app
from your Applications folder.
Upvotes: 4