Det som fungerade för mig i Mountain Lion Rails installation (med Homebrew och RVM) var att redigera /usr/local/Cellar/mysql/5.XX.XX/bin/mysql_configand ta bort -Wno-null-conversion -Wno-unused-private-field
från cxflags och cxflags alternativ enligt följande:
Före:
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!
Efter:
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!
Efter den pärlainstallationen fortsatte mysql2 utan problem
Obs:detta beror förmodligen på en förändring som infördes i mysql_config efter 5.6.10:http://bugs.mysql.com/bug.php?id=69645