18

我将 ruby​​ 升级到 1.9.3,现在我无法启动我的服务器。当我运行捆绑安装时,它说

An error occurred while installing libv8 (3.11.8.17), and Bundler cannot continue.
Make sure that `gem install libv8 -v '3.11.8.17'` succeeds before bundling.

当我尝试安装那个 gem 时,它说

ERROR:  Error installing libv8:
        ERROR: Failed to build gem native extension.

        /Users/Erica/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb
creating Makefile
Compiling v8 for x64
Using python 2.7.1
Unable to find a compiler officially supported by v8.
It is recommended to use GCC v4.4 or higher
Using compiler: g++
Unable to find a compiler officially supported by v8.
It is recommended to use GCC v4.4 or higher

我是一名 HTML/CSS 编码员,而不是真正的 Ruby 开发人员,因此非常感谢任何想法。

4

6 回答 6

31

我通过使用以下命令解决了这个问题:

gem install libv8 -v 3.11.8.17 -- --with-system-v8

它适用于 Mavericks 上的 RVM。

https://stackoverflow.com/a/19667419/763744

于 2014-11-25T05:04:11.053 回答
8

尝试在自制软件中重新安装 v8:

gem uninstall libv8
brew install v8
gem install libv8
于 2013-10-30T19:02:08.403 回答
3

做:

gem install rmagick -v '2.13.2'
gem install libv8 -v 3.11.8.17 -- --with-system-v8
于 2015-03-05T13:47:25.970 回答
0

这个简单的解决方案对我有用:

$ gem uninstall libv8 # select "All Versions" if prompted
$ gem install libv8
于 2013-11-14T22:07:50.793 回答
0

当我从 OSX Mountain Lion 升级到 OSX Mavericks 时,我遇到了同样的问题。

从 ruby​​-1.8.7-p354 升级到 ruby​​-1.8.7-375 对我有用。

libv8 (3.16.14.3-x86_64-darwin-13) 和 therubyracer (0.12.0) gems 安装没有问题。

假设您使用 rbenv:

rbenv versions
  system
  * 1.8.7-p354
  2.0.0-rc2

rbenv uninstall 1.8.7-p354
rbenv install 1.8.7-p375

rbenv versions
  system
  * 1.8.7-p375
  2.0.0-rc2

bundle install
于 2014-04-05T03:00:04.457 回答
0

我已经遇到过几次这个问题,我首先尝试的是(重新)安装command line tools。通常应该可以工作。

另一次成功的尝试是卸载libv8,然后再次安装。这需要岁月...

于 2013-09-05T21:55:03.557 回答