Skip to content

Instantly share code, notes, and snippets.

@tuxpowered
Created August 3, 2016 01:07
Show Gist options
  • Select an option

  • Save tuxpowered/7a30e29e25f9ad4df52649c73c39480d to your computer and use it in GitHub Desktop.

Select an option

Save tuxpowered/7a30e29e25f9ad4df52649c73c39480d to your computer and use it in GitHub Desktop.
Installing uwsgi on OSX El Capitan
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