2012-01-12 13 views
9

Próbowałem wielu rozwiązań, ale nic nie działa! Używam Ruby 1.9.3 i Rails 3.1.3 i chcę zainstalować klejnot ruby-debug19. Ten ist co otrzymuję od PowerShell:Nie można zainstalować gem ruby-debug19 na win7 z zainstalowanym Ruby 1.9.2 i 1.9.3

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

     C:/Ruby193/bin/ruby.exe extconf.rb 
checking for rb_method_entry_t.body in method.h... no 
checking for vm_core.h... 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.body in method.h... no 
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 
creating Makefile 

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-p0/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 

Odpowiedz

2

Podobne pytanie zostało zadane na miejscu JetBrains, a jego rozwiązanie pracował dla mnie: http://devnet.jetbrains.com/message/5443846#5443846

Należy zainstalować nowy linecache19 gem poprzez

curl -OL http://rubyforge.org/frs/download.php/75414/linecache19-0.5.13.gem 
gem install linecache19-0.5.13.gem 

A następnie ruby-debug-base19x przez

gem install --pre ruby-debug-base19x 
+0

Wielkie dzięki! Teraz zainstalowałem ten klejnot. Niemniej jednak rubymine chce debugowania-ruby dla trybu debugowania. Jeśli spróbuję zainstalować ten klej, pojawia się następujący błąd w PowerShell: BŁĄD: Błąd podczas instalowania ruby-debug-ide: BŁĄD: Nie udało się zbudować natywnego rozszerzenia gem – kampfsau1808

+0

Nie jestem pewien, ale myślę, że musisz mieć [DevKit ] (http://rubyinstaller.org/add-ons/devkit/) zainstalowane –

+0

Mam już zainstalowany devkit (dla Ruby 1.9.2 i 1.9.3) – kampfsau1808

13

miałem podobny problem z dostaniem zainstalowany ruby-debug-base19x i byłem w stanie uzyskać z powodzeniem instalowane przy użyciu następujących:

gem install ruby-debug-base19x -v 0.11.30.pre3 

To działało na moim komputerze rozwoju, który jest uruchomiony system Windows 7 wraz z PIK (zob https://github.com/vertiginous/pik), devkit (patrz https://github.com/oneclick/rubyinstaller/wiki/development-kit) i Ruby 1.9.3p0/1.9.2p290

Oto próbka tego, co powinieneś zobaczyć podczas instalowania go:

C:\>gem install ruby-debug-base19x -v 0.11.30.pre3 
Fetching: columnize-0.3.6.gem (100%) 
Fetching: archive-tar-minitar-0.5.2.gem (100%) 
Fetching: ruby_core_source-0.1.5.gem (100%) 
Fetching: linecache19-0.5.12.gem (100%) 
Temporarily enhancing PATH to include DevKit... 
Building native extensions. This could take a while... 
Fetching: ruby-debug-base19x-0.11.30.pre3.gem (100%) 
Building native extensions. This could take a while... 
Successfully installed columnize-0.3.6 
Successfully installed archive-tar-minitar-0.5.2 
Successfully installed ruby_core_source-0.1.5 
Successfully installed linecache19-0.5.12 
Successfully installed ruby-debug-base19x-0.11.30.pre3 
5 gems installed 
Installing ri documentation for columnize-0.3.6... 
Installing ri documentation for archive-tar-minitar-0.5.2... 
Installing ri documentation for ruby_core_source-0.1.5... 
Installing ri documentation for linecache19-0.5.12... 
Installing ri documentation for ruby-debug-base19x-0.11.30.pre3... 
Installing RDoc documentation for columnize-0.3.6... 
Installing RDoc documentation for archive-tar-minitar-0.5.2... 
Installing RDoc documentation for ruby_core_source-0.1.5... 
Installing RDoc documentation for linecache19-0.5.12... 
Installing RDoc documentation for ruby-debug-base19x-0.11.30.pre3... 

w Hole to działało dla mnie, jest to ruchomy cel w tym, że używamy premierowej wersji tego klejnotu, żeby wszystko załatwić. Najlepiej mieć oko na wydanie.

Wystarczy dodatkowa uwaga, że ​​w chwili pisania bieżącej wstępne uwolnienie było 0.11.30.pre6 który nie działa tak właśnie robi, co następuje zawiedzie:

gem install ruby-debug-base19x --pre 
+0

co to jest ten tajemniczy klejnot ruby-debug-base19x odważę się zapytać? – rogerdpack

+0

Warto również wspomnieć, że musisz zmienić linię w Gemfile: gem "ruby-debug-base19x", "~> 0.11.29" –

2

miał podobny problem z Mac OS X rvm ruby ​​1.9.3-p0 i gem install ruby-debug-base19x --pre załatwiły sprawę.

To instaluje wydanie pre10, które wydaje się zdziałać.

Powiązane problemy