2

我似乎无法在 Windows 上安装薄 gem。这里提出了一个非常相似的问题,但是在捆绑所有答案之后它仍然不起作用。

痕迹:

C:/Ruby193/bin/ruby.exe extconf.rb
checking for main() in -lc... *** 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:/Ruby193/bin/ruby
    --with-thin_parser-dir
    --without-thin_parser-dir
    --with-thin_parser-include
    --without-thin_parser-include=${thin_parser-dir}/include
    --with-thin_parser-lib
    --without-thin_parser-lib=${thin_parser-dir}/lib
    --with-clib
    --without-clib
C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:381:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:461:in `try_link0'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:476:in `try_link'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:619:in `try_func'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:845:in `block in have_library'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:790:in `block in checking_for'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:284:in `block (2 levels) in postpone'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:284:in `block in postpone'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:280:in `postpone'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:789:in `checking_for'
    from C:/Ruby193/lib/ruby/1.9.1/mkmf.rb:840:in `have_library'
    from extconf.rb:4:in `<main>'

来自 RubyInstaller for Windows 的 DevKit 已安装。
时间机器已安装。

其他宝石工作得很好。有没有人面临相同或类似的问题?
使用 Windows 7 Professional 和最新的 1.9 Ruby。

顺便说一句:
我也发现了这个问题。评论引用了上述问题,可能的解决方案是重新安装 Xcode。但我没有使用 Xcode,也没有安装它。

4

1 回答 1

0

我只是在安装薄时出错,最初的看起来像你的。

问题是 devkitvars.bat 没有运行。如果你先运行这个,然后做一个 gem install thin..

C:\<PATHTODEVKIT>\devkitvars.bat

根据您的设置,您将取得进展。

对我来说,问题是我最初安装的 ruby​​ 和 devkit 都在一个带空格的目录中。有时我不觉得计算机科学有进步..

所以我移动了目录,更改了 ruby​​ 的环境路径变量和注册表变量,并验证了 ruby​​ 安装。

然后我:

del <devkitdir>\config.yml
ruby dk.rb init
ruby dk.rb install

gem install thin

我得到了你的错误。

这就是长期解决方案的来源。

在 [RubyDir]\lib\ruby\site-ruby 目录中,有一个名为 devkit.rb 的文件未被更改。

也许如果我删除了这个文件,dk.rb 安装会生成它(假设他们使用 make 将这个文件移动到这里,并且没有检查注册表项或任何东西)。但是我对其进行了编辑,并将 devkit 位置的路径更改为新位置。

这结束了你的错误。我还收到了与您引用的页面相关的错误。我遵循了其中一种解决方案:

$ gem install specific_install
$ gem specific_install -l http://github.com/eventmachine/eventmachine.git

gem install thin

臀部臀部!

希望这可以帮助。

于 2014-06-07T18:41:48.727 回答