LoginSignup
1

More than 3 years have passed since last update.

mysql2 gem ビルド

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

を設定しましょうとよく書いてあるけれど、新しいOSX(10.4.4~?)のclangには --with-cppflags がないようで

clang: error: unsupported option '--with-cppflags=-I/usr/local/opt/openssl/include'

と言われます。

かわりに

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

と書いたらいいですよ。

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
What you can do with signing up
1