Mountain Lion Railsのインストール(HomebrewとRVMを使用)で機能したのは、/ usr / local / Cellar / mysql / 5.XX.XX / bin / mysql_configを編集し、-Wno-null-conversion -Wno-unused-private-field
次のようにcxflagsおよびcxflagsオプションから:
前:
cflags="-I$pkgincludedir -Wall -Wno-null-conversion -Wno-unused-private-field -Os -g -fno-strict-aliasing -DDBUG_OFF " #note: end space!
cxxflags="-I$pkgincludedir -Wall -Wno-null-conversion -Wno-unused-private-field -Os -g -fno-strict-aliasing -DDBUG_OFF " #note: end space!
後:
cflags="-I$pkgincludedir -Wall -Os -g -fno-strict-aliasing -DDBUG_OFF " #note: end space!
cxxflags="-I$pkgincludedir -Wall -Os -g -fno-strict-aliasing -DDBUG_OFF " #note: end space!
その後、gemのインストールmysql2は問題なく進行しました
注:これは、5.6.10以降にmysql_configに導入された変更が原因である可能性があります: http: //bugs.mysql.com/bug.php?id=69645