Created
September 5, 2019 18:43
-
-
Save mrsweaters/61b57b5d63ac92f96058feb3ea77cd4a to your computer and use it in GitHub Desktop.
ld: library not found for -lssl error
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
To fix for a manual gem install: | |
brew install openssl | |
gem install mysql2 -- --with-opt-dir="$(brew --prefix openssl)" | |
To fix for all bundle installs: | |
brew install openssl | |
bundle config --global build.mysql2 --with-opt-dir="$(brew --prefix openssl)" | |
bundle install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment