LoginSignup
1
0

More than 5 years have passed since last update.

RailsでMySQLがインストールできない

Last updated at Posted at 2018-04-15

久しぶりにGemでMySQLを使おうとしたらbundle installできなくて少しハマる。

...
linking shared-object mysql2/mysql2.bundle
ld: library not found for -lssl
...

OpenSSLはインストールされているのに、-lオプションでうまく参照できていないようだ。

下記エントリーを発見して解決

RailsプロジェクトでMySQLがbundle installできなかった
https://qiita.com/akito19/items/e1dc54f907987e688cc0

下記のようにしてやればOK。

$ bundle config --local build.mysql2 "--with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include"

2016年のエントリーだけど、未だに困っているポイントは同じです。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0