2

在 Windows 7(64 位)上设置 Rally App SDK 2.0p 环境时出现问题。我已经从 ruby​​installer.org 安装了 Ruby 1.8.7-p358 并设法安装了 rake Ruby gem。但我在安装jslint-v8 gem 时遇到问题。它依赖于需要使用 Ruby DevKit 构建的therubyracerlibv8 gem。在安装过程中,我收到以下错误:

C:\ruby> gem install jslint-v8
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing jslint-v8:
    ERROR: Failed to build gem native extension.

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

Gem files will remain installed in C:/ruby/lib/ruby/gems/1.8/gems/libv8-3.3.10.4 for inspection.
Results logged to C:/ruby/lib/ruby/gems/1.8/gems/libv8-3.3.10.4/ext/libv8/gem_make.out

有谁知道如何在Win7中正确安装它?谢谢!

4

3 回答 3

7

您尝试安装的 gem 取决于libv8gem,它只不过是 Google V8 JavaScript VM 的包装器。

Windows 没有预编译的 libv8(就像 Linux 或 OSX 一样),这意味着它需要从头开始构建 V8。

围绕 V8 的构建过程的代码不是很便携,更不用说编译 libv8 需要安装 Python :-P

直到今天,没有人能够按照存储库说明在 Windows 上遵循 libv8 预编译的说明:

https://github.com/cowboyd/libv8

很抱歉无法为您提供更好的回复。

于 2012-06-07T00:16:46.630 回答
1

试试这个gem install libv8 -v '3.16.14.3' -- --with-system-v8

参考:安装 libv8 时出错:错误:无法构建 gem 原生扩展

于 2014-03-22T09:58:27.877 回答
-1

要在安装 gem 时在 Windows 中构建 gem 原生扩展,通常还需要安装 DevKit: http ://rubyinstaller.org/downloads/ - 转到 devkit 下载链接
他们的 github 页面有安装说明: https:/ /github.com/oneclick/rubyinstaller/wiki/Development-Kit

我还建议使用 Ruby 1.9.3 而不是 1.8.7,但这应该不是什么大问题

希望有帮助。

于 2012-05-31T13:30:24.920 回答