Created
May 22, 2017 18:41
-
-
Save amitizle/e79d63abb943e382ed1b313cfeeb6fa4 to your computer and use it in GitHub Desktop.
Install luasec rock MacOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# With openssl installed (brew install openssl) | |
$ luarocks --local install luasec OPENSSL_INCDIR=/usr/local/opt/openssl/include/ |
thanks, this way solve my problem
Thanks! I love you bro.
I had trouble because the openssl
libraries could not be found. A friendly pointer to the lib path solved the issue for me:
luarocks --local install luasec OPENSSL_INCDIR=/opt/homebrew/Cellar/openssl@3/3.0.8/include OPENSSL_LIBDIR=/opt/homebrew/Cellar/openssl@3/3.0.8/lib
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Great!