2012-01-25 22 views
3

私と全く同じ問題を抱えている(これを含む)解決策では何も見つかりません。私は自分のシステムに特定の宝石を取り付けることができません。私は実行する:windows ruby​​ debug ide gem install fail

gem install ruby-debug-ide --platform=ruby --pre 

今はすべて正常にインストールされています。 Ruby 1.9.3とRuby DevKitもインストールされています。私はruby-debug-base19xバージョン0.11.30.pre3もインストールしました。それはスムーズに進みました。今、これが私に問題を与えている唯一のものです。私はマシンを再起動し、RubyとRuby DevKitを再インストールするまで、すべてを試しました。ここで

はgem_make.outファイルからのエラーです:エラーの長さのため

C:/Ruby193/bin/ruby.exe mkrf_conf.rb 
Building native extensions. This could take a while... 
Building native extensions. This could take a while... 
ERROR: Failed to build gem native extension. 

    C:/Ruby193/bin/ruby.exe extconf.rb 
checking for rb_method_entry_t.called_id in method.h... no 
checking for rb_control_frame_t.method_id in method.h... no 
checking for if rb_iseq_compile_with_option was added an argument filepath... no 
C:/Ruby193/lib/ruby/gems/1.9.1/gems/ruby_core_source-0.1.5/lib/ruby_core_source.rb:39: Use RbConfig instead of obsolete and deprecated Config. 
checking for rb_method_entry_t.called_id in method.h... yes 
checking for rb_method_entry() in method.h... yes 
checking for vm_core.h... yes 
checking for iseq.h... yes 
checking for insns.inc... yes 
checking for insns_info.inc... yes 
checking for eval_intern.h... yes 
checking for if rb_iseq_compile_with_option was added an argument filepath... yes 
creating Makefile 

make 
generating ruby_debug-i386-mingw32.def 
compiling breakpoint.c 
compiling ruby_debug.c 
ruby_debug.c: In function 'filename_cmp': 
ruby_debug.c:522:9: warning: implicit declaration of function 'filename_cmp_impl' 
ruby_debug.c:530:7: warning: implicit declaration of function 'realpath' 
ruby_debug.c:530:34: warning: comparison between pointer and integer 
linking shared-object ruby_debug.so 
ruby_debug.o: In function `filename_cmp': 
C:\Ruby193\lib\ruby\gems\1.9.1\gems\ruby-debug-base19x-0.11.30.pre6\ext\ruby_debug/ruby_debug.c:530: undefined reference to `realpath' 
collect2: ld returned 1 exit status 
make: *** [ruby_debug.so] Error 1 


Gem files will remain installed in C:/Ruby193/lib/ruby/gems/1.9.1/gems/ruby-debug-base19x-0.11.30.pre6 for inspection. 
Results logged to C:/Ruby193/lib/ruby/gems/1.9.1/gems/ruby-debug-base19x-0.11.30.pre6/ext/ruby_debug/gem_make.out 
C:/Ruby193/lib/ruby/1.9.1/rubygems/installer.rb:552:in `rescue in block in build_extensions' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/installer.rb:530:in `block in build_extensions' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/installer.rb:505:in `each' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/installer.rb:505:in `build_extensions' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/installer.rb:180:in `install' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/dependency_installer.rb:297:in `block in install' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/dependency_installer.rb:270:in `each' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/dependency_installer.rb:270:in `each_with_index' 
C:/Ruby193/lib/ruby/1.9.1/rubygems/dependency_installer.rb:270:in `install' 
mkrf_conf.rb:25:in `rescue in <main>' 
mkrf_conf.rb:20:in `<main>' 

私の謝罪 - 私は確信していない運で最初から複数回再起動して作るのだけで疲れているすべてのI私のやっていることは正しかったし、何かを見落とさない。どうもありがとうございます。

答えて

0

recent commitはこれを修正した可能性があります。あなたはpre9を試すことができますか?

+0

私は実際にバッチファイル内のDevKitの変数を再実行しました。最終的には動作しました。最終的に誰かがこのような問題を抱えていると、助けになるかもしれません。 :-) – sutt0n