Ruby gem mysql2が `ld: library not found for -limported_openssl` で失敗する問題
# 問題
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
Author And Source
この問題について(Ruby gem mysql2が `ld: library not found for -limported_openssl` で失敗する問題), 我々は、より多くの情報をここで見つけました https://qiita.com/hirokizaka46/items/edf098d595c5427b95ff著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .