4

我正在尝试在 10.6 服务器上安装 mysql2 gem,但收到一条我没有看到的错误消息:

EBuilding native extensions.  This could take a while...
ERROR:  Error installing mysql2:
    ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
checking for rb_thread_blocking_region()... no
checking for mysql.h... no
checking for mysql/mysql.h... no
-----
mysql.h is missing.  please check your installation of mysql and try again.
-----
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
    --with-mysql-config
    --without-mysql-config


Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/mysql2-0.2.6/ext/mysql2/gem_make.out

我已经尝试了几件事,指定内置 MySQL 的存储位置sudo gem install mysql2 -- --with-mysql-dir=/var/mysql,并将内置 mysql 替换为来自 mysql.com 的预构建 64 位安装程序

有任何想法吗?

4

3 回答 3

8

弄清楚了:

sudo env ARCHFLAGS="-arch x86_64" gem install mysql2 -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
于 2010-12-12T23:39:39.173 回答
7

我发现您必须安装该软件包mysql-devel...Centos 继续进行yum -y install mysql-devel ,一切顺利。

于 2011-10-19T20:25:27.803 回答
3

我在带有“系统”Ruby 解释器的 RVM 的 OSX 10.5 上遇到了同样的问题。通过 RVM 使用 Ruby 1.8.7 修复了这种情况。

我的灵感来自:https ://gist.github.com/440334#file_gistfile1.txt

于 2011-02-18T18:53:50.863 回答