I tried to install it as below but it throws error :-

"sudo gem install sqlite3-ruby"
Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby:
ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
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/sqlite3-ruby-1.3.1 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/sqlite3-ruby-1.3.1/ext/sqlite3/gem_make.out  

Some information about my system:-

ruby -v 1.8.7
rails -v 3.0.1
gem -v 1.3.7
sqlite3 --version 3.6.12

Also how to even check if the ruby interface for sqlite3 is installed in my system?
Like we "rails-v" to check if rails is installed in our system.I didn't find any commands over the web to check if ruby-interface for sqlite3 is installed in my system ?

link|improve this question

79% accept rate
Do you have XCode installed? You'll need it to compile native code. stackoverflow.com/q/1352406 – Alexandre Jasmin Oct 28 '10 at 2:31
how to check that ? Any command to check that ? – Saran Oct 28 '10 at 2:32
Type gcc --version on the command line. – Alexandre Jasmin Oct 28 '10 at 2:34
yeah it is not installed . gcc--version -bash: gcc--version: command not found.bash: gcc: command not found. How to install it in Mac. Sorry but , i'm really really new to Mac OSx !!!! – Saran Oct 28 '10 at 2:42
1  
It's not too hard. I'll write an answer for it. – Alexandre Jasmin Oct 28 '10 at 2:43
feedback

2 Answers

up vote 2 down vote accepted

In order to compile native code on OS X (such as this native Ruby extension) you have to install Apple XCode.

XCode includes various developer tools such as the gcc compiler and development header files (ruby.h among others).

There should be an installer for XCode on your OS X DVD under Optional Installs/Xcode.mpkg. You can also download the latest release from http://developer.apple.com/devcenter/mac. (A free registration is required).

To install XCode double click on the .mpkg file in the Finder and follow the instructions on the screen.

link|improve this answer
Even after installing the (3 GB sized)Xcode package from the above said link , gcc is not installed yet.I get "gcc command not found" when I try gcc --version. Could it be some path setting issue?? – Saran Nov 4 '10 at 5:27
On my system /usr/bin/gcc is a symlink to /usr/bin/gcc-4.2 I'm almost certain this was create automatically by the XCode install. According to stackoverflow.com/questions/1810327/… it should work at that point. Though the poster of that question fixed his problem by reinstalling XCode. – Alexandre Jasmin Nov 4 '10 at 5:49
worked . .My xcode installation was not proper. Thanks it works well :) – Saran Nov 5 '10 at 18:46
feedback

Your Answer

 
or
required, but never shown

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