vote up 3 vote down star

I successfully installed MySql x86_64 in Snow Leopard and Ruby and Ruby Gems seems to be installed properly:

$ which mysql
/usr/local/mysql/bin/mysql
$ which ruby
/usr/bin/ruby
$ which gem
/usr/bin/gem
$ mysql
Your MySQL connection id is 404
Server version: 5.1.37 MySQL Community Server (GPL)
$ ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [universal-darwin10.0]
$ gem -v
1.3.5

Unfortunatly I get an error installing mysql gem:

$ sudo gem update --system
...
$ sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
Building native extensions.  This could take a while...
ERROR:  Error installing mysql:
    ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb --with-mysql-config=/usr/local/mysql/bin/mysql_config
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h


Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/mysql-2.8.1 for inspection.
flag

3 Answers

vote up 0 vote down

I think you should try to uninstall the old mysql gem first before recompiling

sudo gem uninstall mysql
sudo env ARCHFLAGS="-arch x86_64" gem install mysql -- --with-mysql-config=/usr/local/mysql/bin/mysql_config
link|flag
Didn't work... :( – Levi Figueira Sep 2 at 14:34
vote up 4 vote down check

Installing the Xcode that's bundled with the Snow Leopard fixed the problem.

link|flag
I did, and updated the iPhone SDK to the Snow Leopard version as well.. Still get the same error, so I doubt that's the problem! :( – Levi Figueira Sep 2 at 14:30
For me as well as a user in another post (ruby-forum.com/topic/191688) that do the trick. – collimarco Sep 2 at 14:39
vote up -2 vote down

Polygraf's answer worked for me

link|flag
-1 This is not an answer. Consider instead to comment Polygraf's answer. – collimarco Sep 23 at 13:31
how? I don't see any interface for adding a comment in his thread. But I did see one for this thread. – jhnsntmthy Oct 7 at 4:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.