2012-01-27 38 views
12

Tôi đã thêm đá quý 'sunspot_rails' vào tệp gem của mình và chạy gói cài đặt. Tôi đã nhận lỗi trong cài đặt libv8 và được thông báo lỗi như sau:cài đặt bó/Lỗi trong Cài đặt libv8 (3.3.10.4) trên đường ray (chạy trên Lion)

Installing libv8 (3.3.10.4) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. 

     /opt/local/bin/ruby extconf.rb 
*** 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=/opt/local/bin/ruby 
extconf.rb:13: uninitialized constant Gem (NameError) 
Checking for Python... 

Gem files will remain installed in /Users/sonyakim/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.3.10.4 for inspection. 
Results logged to /Users/sonyakim/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.3.10.4/ext/libv8/gem_make.out 
An error occured while installing libv8 (3.3.10.4), and Bundler cannot continue. 
Make sure that `gem install libv8 -v '3.3.10.4'` succeeds before bundling. 

Khi tôi chạy gem install -v libv8 '3.3.10.4', thông báo lỗi sau đây được in:

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

     /opt/local/bin/ruby extconf.rb 
*** 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=/opt/local/bin/ruby 
extconf.rb:13: uninitialized constant Gem (NameError) 
Checking for Python... 

Gem files will remain installed in /Users/sonyakim/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.3.10.4 for inspection. 
Results logged to /Users/sonyakim/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.3.10.4/ext/libv8/gem_make.out 

Làm cách nào để cài đặt libv8 đúng cách?

+0

Phiên bản nào của 'gem' bạn đang sử dụng? 'gem -v' – tadman

+0

im sử dụng phiên bản 1.8.15 – user1173832

Trả lời

28

Force tập tin extconf.rb yêu cầu rubygems về cài đặt:

RUBYOPT=-rrubygems gem install libv8 -v '3.3.10.4' 

Tìm thấy ở đây: https://coderwall.com/p/y1djxq

Các vấn đề liên quan