therubyracer - Gem :: Ext :: BuildError:错误:无法构建gem原生扩展

时间:2014-05-08 08:44:37

标签: ruby gcc osx-mavericks therubyracer libv8

我正在尝试在Mavericks上安装以下gem版本

  • libv8(3.16.14.3)
  • therubyracer(0.12.1)

显然,therubyracer宝石取决于libv8。

1)安装libv8

什么是libv8?我的一些研究似乎表明它是Google Chrome使用的某种javascript库?

我在安装时遇到了问题,但this great post有我的错误以及如何绕过它的解释清楚的答案。

所以我用

安装了libv8
gem install libv8 -- --with-system-v8

我的理解是,这会安装gem但使用我的本地系统安装v8库而不是... gem附带的版本?无论哪种方式,它都是成功的。

2)安装therubyracer

在下一步中,我无法安装therubyracer gem。我不太确定这个gem是做什么的,只是因为它是我试图bundle install的rails项目的依赖项。

它给了我以下错误:

Gem::Ext::BuildError: ERROR: Failed to build gem native extension.

    /Users/jeeves.butler/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb 
checking for main() in -lpthread... yes
checking for main() in -lobjc... yes
checking for v8.h... no
*** 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/jeeves.butler/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
    --with-pthreadlib
    --without-pthreadlib
    --with-objclib
    --without-objclib
    --enable-debug
    --disable-debug
    --with-v8-dir
    --without-v8-dir
    --with-v8-include
    --without-v8-include=${v8-dir}/include
    --with-v8-lib
    --without-v8-lib=${v8-dir}/lib
/Users/jeeves.butler/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.16.14.3/ext/libv8/location.rb:50:in 
'configure': You have chosen to use the version of V8 found 
on your system (Libv8::Location::System::NotFoundError)
and *not* the one that is bundled with the libv8 rubygem. However,
it could not be located. please make sure you have a version of
v8 that is compatible with 3.16.14.3 installed. You may
need to special --with-v8-dir options if it is in a non-standard
location

thanks,
The Mgmt

    from /Users/jeeves.butler/.rvm/gems/ruby-1.9.2-p290/gems/libv8-3.16.14.3/lib/libv8.rb:7:in `configure_makefile'
    from extconf.rb:32:in `<main>'

extconf failed, exit code 1

Gem files will remain installed in /Users/jeeves.butler/.rvm/gems/ruby-1.9.2-p290/gems/therubyracer-0.12.1 for inspection.
Results logged to /Users/jeeves.butler/.rvm/gems/ruby-1.9.2-p290/extensions/x86_64-darwin-13/1.9.1/therubyracer-0.12.1/gem_make.out

根据我的收集,我选择使用我的本地V8库而不是libv8提供的内容来安装libv8,但现在无法找到本地安装。

  • 如何检查我是否确实安装了V8以及如何找到它?
  • 我尝试了一些指定的标志,它们似乎都没有将gem指向正确的安装目录
  • 这可能是一个单独的主题,但extconf.rb是什么?我在几个地方见过它。它在特定的情况下尝试用gcc编译器做什么?

谢谢!

编辑:

  1. 我尝试this solution卸载libv8并通过brew install重新安装。它也提到了几个类似的问题。没有运气。

  2. 我还尝试了CCCXXCPP环境变量,如here所述,尽管我认为没有任何影响,因为它我已经拿起了我的gcc v4.6编译器。

15 个答案:

答案 0 :(得分:155)

这些步骤对我有用。

操作系统:Maverick Ruby:2.1.1

gem uninstall libv8
gem install therubyracer -v '0.11.3'
gem install libv8 -v '3.11.8.13' -- --with-system-v8

答案 1 :(得分:68)

对于那些在OS X El Capitan中遇到此问题的人来说,来自therubyracer问题线程的this solution最终对我有用:

buffer: text/plain; charset=us-ascii

我之前也运行过brew tap homebrew/versions brew install v8-315 gem install libv8 -v '3.16.14.13' -- --with-system-v8 gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315 bundle install ,但我不确定这是否真的有必要。

答案 2 :(得分:26)

首先尝试卸载libv8 gem,然后安装rubyracer,再安装libv8

gem uninstall libv8
gem install therubyracer
gem install libv8 -- --with-system-v8

答案 3 :(得分:17)

Tertom's解决方案posted on github在尝试了相应的github issue和此处提出的所有其他解决方案后,为我解决了这个问题。
我有完全相同的系统配置 这是el capitan,所以不是问题的确切答案,但人们可能会发现此信息有用。

我在这里引用它的可见性:

  

解决了同样的问题

     
      
  • MacOS 10.11.2
  •   
  • ruby​​ 1.9.3
  •   
  • libv8 3.16.14.13
  •   
  • therubyracer 0.12.2
  •   
     

-

brew tap homebrew/versions  
brew install v8-315  
brew link --force v8-315  
bundle install  
brew unlink v8-315
     

如果你也无法安装libv8,

gem install libv8 --with-system-v8
     

bundle config build.libv8 --with-system-v8

答案 4 :(得分:6)

以上答案对我不起作用; my bundler config已启用disable-shared-gems,这会导致其他问题。

我使用Yosemite 10.10.1,Rails 3.2.x和Ruby 1.9.3p550。

我的bin/setup中的以下片段为我解决了这个问题。

if ! bundle show therubyracer; then
    bundle config build.libv8 --with-system-v8
    gem install --install-dir vendor/bundle libv8 -v 3.16.14.7
    gem install libv8 -v 3.16.14.7
    gem install --install-dir vendor/bundle therubyracer 
fi

答案 5 :(得分:5)

对于使用macOS 10.15的所有人来说,brew均已更改,因此您需要执行以下命令。

brew install v8@3.15
gem install libv8 -v 'YOUR_VERSION' -- --with-system-v8
gem install therubyracer -v 'YOUR_VERSION' -- --with-v8-dir=/usr/local/opt/v8@3.15
bundle install

答案 6 :(得分:4)

我找到了解决上述问题的方法。

这更像是libv8和therubyracer之间的兼容性。

gem install libv8 -v '3.3.10.4' -- --with-system-v8

gem install therubyracer -v '0.10.2'

这应该可以正常工作,因为这两个版本都与我兼容。最初我试图安装版本0.12.0 for therubyracer并面临这个问题。一旦我切换到版本0.10.2,一切正常。

我目前的操作系统:小牛

答案 7 :(得分:2)

我遇到了MacOS Mojave 10.14.2的这个问题,当我发现软件包v8-315的安装位置和文件夹名称是什么时,我能够解决此问题。 以我为例,这里是/usr/local/opt/v8@3.15

要解决此问题,我接下来运行:

brew install v8-315
gem install libv8 -v '3.16.14.15' -- --with-system-v
gem install therubyracer -v '0.12.2' -- --with-system-v8 --with-v8-dir=/usr/local/opt/v8@3.15
bundle install

答案 8 :(得分:1)

在我的头上摔了将近两天后,这对我有用。

rvm install 2.2.2
gem install rails
bundle install

答案 9 :(得分:1)

尽管安装了libv8的x64(64位变体),但由于libv8依赖性,我无法使therubyracer在macOS Catalina 10.15上构建。

对我来说,解决方案是从therubyracer切换到mini_racer(已安装mini_racer gem)(无需在本地构建),嘿!我可以继续。

尝试一下!

答案 10 :(得分:1)

就我而言

MacOS: Catalina , Ruby: 2.3.3 使用rbenv (不是RVM), 我需要therubyracer版本:0.12.3(没关系)

我尝试了所有解决方案,但对我有用的是,亲爱的请不要盲目复制粘贴解决方案(我以我的情况为准),请首先阅读,然后根据需要更改以下命令中的版本。大多数命令在大多数现有答案中都是通用的,但对我有用的是gem install therubyracer -- --with-v8-dir=$(brew --prefix v8-315)而不是gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315感谢Junji Zhithis answer

中的评论
1. brew install gcc
2. brew tap homebrew/versions   (If it wont work then below 2 steps, for latest MacOS version)
2.a. brew tap brewsci/bio
2.b. brew tap brewsci/science
3. brew install v8-315     (uninstall if v8 installed previously without '-315')
4. gem install libv8 -v '3.16.14.19' -- --with-system-v8   (Be careful with the libv8 version mentioned in this command, replace version number with one required)
5.a. gem install therubyracer -- --with-v8-dir=/usr/local/opt/v8-315    (If it does not work then try below one, In my case below command worked)
5.b. gem install therubyracer -- --with-v8-dir=$(brew --prefix v8-315)

完成,然后继续您的bundle install

注意:在gem安装 therubyracer 时,检查正在安装哪个版本的 libv8 ,如果它与我在其中提到的版本有所不同第4步,那么您的therubyracer可能无法安装,因此只需做一件事,gem uninstall libv8,然后通过更改版本重复第4步 strong>,您在安装 therubyracer

时会在控制台中看到的内容

答案 11 :(得分:1)

这对我有用:

gem install libv8 -v '3.16.14.17' -- --with-system-v8
brew install v8-315
gem install therubyracer -v '0.12.3' --source 'http://rubygems.org/' -- --with-v8-dir='/usr/local/opt/v8@3.15'

对于最后一条命令,在我的情况下检查brew --prefix v8-315的输出为/usr/local/opt/v8@3.15

答案 12 :(得分:0)

下面的命令在Catalina中使用捆绑器为我解决了

$ brew install v8@3.15
$ bundle config build.libv8 --with-system-v8
$ bundle config build.therubyracer --with-v8-dir=$(brew --prefix v8@3.15)
$ bundle install

答案 13 :(得分:-1)

当我们遇到问题时,我注意到了:

Gem::Ext::BuildError: ERROR: Failed to build gem native extension

然后你应该安装build-essential

sudo apt install build-essential

对于mini_race的安装问题,它适用于我。

答案 14 :(得分:-3)

我只是运行bundle update,它对我有用。

Obs。:使用Ruby 2.3.0