# 問題
gem install mysql2
するとき以下のエラーが出てきた:
make "DESTDIR="
compiling client.c
compiling infile.c
compiling mysql2_ext.c
compiling result.c
compiling statement.c
linking shared-object mysql2/mysql2.bundle
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [mysql2.bundle] Error 1
make failed, exit code 2
...
An error occurred while installing mysql2 (0.5.3), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.5.3' --source 'https://rubygems.org/'` succeeds before bundling.
In Gemfile:
mysql2
解決
調べると、いろいろ方法がありそうですが(参考リンクは一番後ろに添付)、一番いい解決はopensslをインストール、エクスポートと思います:
brew install openssl
export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/opt/openssl/lib/
そうしたら
bundle install
無事解決しました。
参考資料
https://qiita.com/choripon/items/b59e568b614e7e67d1af
https://stackoverflow.com/questions/43523389/cannot-install-mysql2-gem-for-rails-project