2

Windows 7 に Rails をインストールしようとしています。

インストールすると、次のエラーが表示されます。

make
generating ruby_debug-i386-mingw32.def
compiling breakpoint.c
compiling ruby_debug.c
ruby_debug.c:29:19: error: conflicting types for 'rb_iseq_compile_with_option'
C:/Ruby193/include/ruby-1.9.1/ruby-1.9.3-p194/vm_core.h:505:7: note: previous declaration of 'rb_iseq_compile_with_option' was here
ruby_debug.c: In function 'context_jump':
ruby_debug.c:2414:53: warning: comparison between signed and unsigned integer expressions
ruby_debug.c:2428:27: warning: comparison between signed and unsigned integer expressions
make: *** [ruby_debug.o] Error 1


Gem files will remain installed in C:/Ruby193/lib/ruby/gems/1.9.1/gems/ruby-debug-base19-0.11.25 for inspection.
Results logged to C:/Ruby193/lib/ruby/gems/1.9.1/gems/ruby-debug-base19-0.11.25/ext/ruby_debug/gem_make.out
An error occured while installing ruby-debug-base19 (0.11.25), and Bundler cannot continue.
Make sure that `gem install ruby-debug-base19 -v '0.11.25'` succeeds before bundling.

Ruby 1.9.3 で Windows に ruby​​-debug-base19 をインストールする」に従って、 ruby ​​-debug-base19 -v '0.11.26をインストールしました。

4

1 に答える 1

0

gemfileでコメントアウトするだけです

#  gem 'ruby-debug19', :require => 'ruby-debug'

必要に応じて、デバッグ用に better_errors を試すことができます better_errors へのリンク

于 2013-02-06T13:47:32.310 に答える