Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error installing Ruby on Rails 4.0 - atomic_reference.c Error 71

I am getting an error when trying to install rails (or more specifically, atomic).

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

    /Users/dima/.rvm/rubies/ruby-2.0.0-p247/bin/ruby extconf.rb creating Makefile

make compiling atomic_reference.c atomic_reference.c:50:9: warning: implicit declaration of function 'OSAtomicCompareAndSwap64' is invalid in C99 [-Wimplicit-function-declaration]
    if (OSAtomicCompareAndSwap64(expect_value, new_value, &DATA_PTR(self))) {
        ^ 1 warning generated. linking shared-object atomic_reference.bundle

make install /usr/bin/install -c -m 0755 atomic_reference.bundle /Users/dima/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/atomic-1.1.10/lib/Users/dima/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/x86_64-darwin12.4.0 install: /Users/dima/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/atomic-1.1.10/lib/Users/dima/.rvm/rubies/ruby-2.0.0-p247/lib/ruby/site_ruby/2.0.0/x86_64-darwin12.4.0: No such file or directory make: *** [install-so] Error 71


Gem files will remain installed in /Users/dima/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/atomic-1.1.10 for inspection. Results logged to /Users/dima/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/atomic-1.1.10/ext/gem_make.out

I'm basically just following the rails tutorial (for rails 4.0 and ruby 2.0, seen here) and have kind of hit a wall here, unfortunately, unable to find much info on what's happening here.

I found this question and followed both suggestions in the answer with the same result.

like image 607
Dima Avatar asked Jun 29 '13 23:06

Dima


1 Answers

Had the very same problem, coming from that same tutorial. Got it to work following this post. Ran a few command to compare gemsets with the post but what seem to fix the problem was

  • gem update --system (without the "2.0.0" from tutorial, updated me to 2.0.3)
  • gem update
  • gem install rails (again without specifying the version)

And finally it installed properly

like image 51
V.Coss Avatar answered Sep 28 '22 17:09

V.Coss