https://www.lua.org/download.html
curl -R -O http://www.lua.org/ftp/lua-5.3.2.tar.gz
tar zxf lua-5.3.2.tar.gz
cd lua-5.3.2
make linux test
I encountered the following error:
fatal error: readline/readline.h: No such file or directory
All that I needed to do was:
sudo apt-get install libreadline-dev
This blog post is also worth reviewing, as it illustrates how to find the various
version of readline
(i.g. "apt-cache search readline")
Note the distinction between the lib version for running an application, versus
for developing applications.
No comments:
Post a Comment