Created
August 3, 2016 01:07
-
-
Save tuxpowered/7a30e29e25f9ad4df52649c73c39480d to your computer and use it in GitHub Desktop.
Installing uwsgi on OSX El Capitan
This file contains hidden or 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
| I update my issue I found in Mac Os El Capitan. A solution taken from the suggestion of others. | |
| Underlining issue is that OSX has older 0.9.x version of openssl. Installing uwsgi attempts to build against older libary. | |
| find / -name "libssl.*.dylib" 2>/dev/null | |
| /usr/lib/libssl.0.9.7.dylib | |
| /usr/lib/libssl.0.9.8.dylib | |
| /usr/local/Cellar/openssl/1.0.2d/lib/libssl.1.0.0.dylib <--- Installed by homebrew | |
| /usr/local/lib/libssl.1.0.0.dylib | |
| Then I built uwsgi as follows: | |
| sudo LDFLAGS=-L/usr/local/Cellar/openssl/1.0.2d/lib make |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment