Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would appreciate some help in getting gem install therubyracer to work. Here is the error:

$ gem install therubyracer
Building native extensions.  This could take a while...
ERROR:  Error installing therubyracer:
    ERROR: Failed to build gem native extension.

        /Users/david/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb
checking for main() in -lobjc... yes
*** 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
    --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=/Users/david/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
    --with-objclib
    --without-objclib
extconf.rb:15:in `<main>': undefined method `include_path' for Libv8:Module (NoMethodError)

Here are some notable steps that I ran before the error. They worked fine:

$ gem install libv8
$ brew install v8

My environment is:

  • Mac OS X Lion 10.7.4
  • ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.4.0] (via rvm)
  • V8 version 3.9.24 (via homebrew)
share|improve this question
Note: I hoped that wellconsidered.be/post/18996655760/… would be of use, but it did not help. – David James Jun 5 '12 at 22:29

6 Answers

For anyone encountering this issue on Mac OSX 10.8 Mountain Lion when attempting to upgrade their Gemfile with gem 'therubyracer', '0.11.0', just upgrading the system libv8 gem worked for me (no uninstallation of any other gem necessary):

$ gem update libv8
$ bundle install

Edit

If you use Travis-CI (or other CI tools located on other servers, I assume), you will need to explicitly add the libv8 gem to your Gemfile as well:

Gemfile

gem 'libv8', '3.11.8.3'

then bundle install as usual. Just note that libv8 can take a significant amount of time to install and I've noticed that it may end up being the cause of going over Travis CI's timeout limits, causing your build to fail. You can mitigate this slightly be not including development environment gems in your builds:

.travis.yml

# ...
bundler_args: --binstubs=./bundler_stubs --without development

Update

Yep, pretty much all my Travis builds timeout and fail because of this. If anyone knows a way to solve this problem (I would hope "downgrade therubyracer" is a last resort), please leave a comment!

Update 2

This may not work for all apps, but it seems that my Rails 3.2.9 apps didn't actually need therubyracer or libv8 after all. After removing those gems from my Gemfile, I confirmed that my specs passed, pushed again to Travis and it built successfully. So, I guess getting rid of those gems (if you're not sure you actually need them) is at least worth a try.

Update 3

Thanks to Paul Annesley for confirming that if you're on Mac OS X 10.8 Mountain Lion, you don't need therubyracer gem at all since the OS already comes bundled with Apple JavaScriptCore, its own Javascript runner. At the time of the original answer, I was on Snow Leopard and hence needed it.

share|improve this answer
Regarding "Update 2" and not needing therubyracer or libv8, presumably that means you're either not using CoffeeScript, or using an alternative JS runner. – Paul Annesley Mar 14 at 11:04
I do use Coffeescript, for sure. Looking back on it, I believe I made that edit soon after I upgraded OS X from Snow Leopard to Mountain Lion, so perhaps Mountain Lion has its own JS runner that made therubyracer unnecessary...? – Paul Fioravanti Mar 14 at 12:10
1  
Ah yes; “Apple JavaScriptCore - Included with Mac OS X” is listed as one of the runtimes on github.com/sstephenson/execjs/blob/master/README.md – Paul Annesley Mar 14 at 22:17
Thanks very much for confirming that. I've added it to the answer. – Paul Fioravanti Mar 14 at 23:03
gem uninstall libv8
brew install v8
gem install therubyracer
share|improve this answer
Thanks Ken. Took about 3-5 minutes to install. Everything working with therubyracer-0.11.2 which auto-installed libv8-3.11.8.13. – scarver2 Jan 12 at 15:56
Thank you! Worked like a charm for me. – Dmitriy Ugnichenko Mar 15 at 14:59

OSX 10.8.2, ruby 1.9.3p125

None of the above worked for me... I got tired of trying to find the right gem for my environment, so I just soft linked to the g++ target this things was missing:

sudo ln -s `which g++` /usr/bin/g++-4.2

Not as helpfully for remote deployments, but get the job done on my workstation.

share|improve this answer

Had the same error, this worked for me:

  1. From console: gem uninstall libv8

  2. In your Gemfile, add the following:

    gem 'therubyracer', :platforms => :ruby, :require => 'v8'
    gem 'libv8', '~> 3.11.8'  # Update version number as needed
    
  3. From console: bundle install

If you were in the middle of upgrading therubyracer gem, you may want to run bundle update therubyracer after that as well. (Consider specifying a version number)

This was on Mac 10.6 (Snow Leopard).

share|improve this answer

At last I use therubyracer 0.11.0beta5 as a solution.

Using therubyracer (0.11.0beta5)

add following on Gemfile

gem 'therubyracer', '~> 0.11.0beta5'
group :libv8 do
  gem 'libv8', "~> 3.11.8"
end

then bundle install

Mac OSX 10.8 Moutain Lion

share|improve this answer
Thanks! Worked great for me – John Aug 3 '12 at 13:31
phew found a fix, thanks! – Troy Cosentino Aug 14 '12 at 3:37
   
I tried this, but: Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. /Users/lionel_lei/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb checking for main() in -lpthread... yes checking for main() in -lobjc... yes creating Makefile make compiling accessor.cc make: clang++: No such file or directory make: *** [accessor.o] Error 1 i am on Rails 3.2.6, ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.4.1], osx 10.7.4 – lionel Oct 3 '12 at 7:19
Thanks! this fix work for me in Mountain Lion. – eduludi Nov 14 '12 at 18:45
up vote 42 down vote accepted

This worked for me:

$ gem uninstall libv8
$ gem install therubyracer

(A big thanks to http://www.ruby-forum.com/topic/4306127)

share|improve this answer
1  
But I don't know why this worked. :) – David James Jun 5 '12 at 22:32
It works on Ubuntu 12.04 (Ruby 1.9.3-p0) as well. Thanks. – Jacek Jun 13 '12 at 17:59
I'm on ruby 1.9.3p194 and this didn't work. "make: g++-4.2: No such file or directory" – jspooner Jun 20 '12 at 16:22
I tried installing every combination of the gems but nothing worked. I ended up just copying the gemdir from the ruby1.9.2p125 directory over to the new p194 directory. – jspooner Jun 20 '12 at 18:33
1  
@lionel Can you post a Gist of exactly what you've tried? Have you tried setting up a new rbenv or rvm install from scratch and writing down the steps (in a Gist) to isolate the problem? Did you do brew install v8 first? – David James Oct 3 '12 at 13:36
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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