3

ruby-debugをインストールしようとしています。Mac OS 10.7.4、XCodeバージョン2308、Rubyバージョン1.9.3-p194を使用しています。

ここの指示に従ってください:http://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-ruby-debug、私は実行してみました

sudo gem install ruby-debug

次のエラーが発生しました:

Building native extensions.  This could take a while...
ERROR:  Error installing ruby-debug:
    ERROR: Failed to build gem native extension.

        /Users/andrew/.rvm/rubies/ruby-1.9.3-p194/bin/ruby 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
*** 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
    --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=/Users/andrew/.rvm/rubies/ruby-1.9.3-p194/bin/ruby
    --with-ruby-dir
    --without-ruby-dir
    --with-ruby-include
    --without-ruby-include=${ruby-dir}/include
    --with-ruby-lib
    --without-ruby-lib=${ruby-dir}/lib
extconf.rb:16:in `block in <main>': break from proc-closure (LocalJumpError)
from /Users/andrew/.rvm/gems/ruby-1.9.3-p194/gems/ruby_core_source-0.1.5/lib/ruby_core_source.rb:18:in `call'
from /Users/andrew/.rvm/gems/ruby-1.9.3-p194/gems/ruby_core_source-0.1.5/lib/ruby_core_source.rb:18:in `create_makefile_with_core'
from extconf.rb:32:in `<main>'


Gem files will remain installed in /Users/andrew/.rvm/gems/ruby-1.9.3-p194/gems/ruby-debug-base19-0.11.26 for inspection.
Results logged to /Users/andrew/.rvm/gems/ruby-1.9.3-p194/gems/ruby-debug-base19-0.11.26/ext/ruby_debug/gem_make.out

そこで、次のコマンドを試しました。

sudo gem install debugger

その結果:

Fetching: columnize-0.3.6.gem (100%)
Fetching: debugger-ruby_core_source-1.1.3.gem (100%)
Fetching: debugger-linecache-1.1.1.gem (100%)
Building native extensions. This could take a while...
Fetching: debugger-1.1.4.gem (100%)
Building native extensions. This could take a while...
Successfully installed columnize-0.3.6
Successfully installed debugger-ruby_core_source-1.1.3
Successfully installed debugger-linecache-1.1.1
Successfully installed debugger-1.1.4
4 gems installed
Installing ri documentation for columnize-0.3.6...
Installing ri documentation for debugger-ruby_core_source-1.1.3...
Installing ri documentation for debugger-linecache-1.1.1...
Couldn't find file to include 'VERSION' from lib/linecache19.rb
Installing ri documentation for debugger-1.1.4...
Installing RDoc documentation for columnize-0.3.6...
Installing RDoc documentation for debugger-ruby_core_source-1.1.3...
Installing RDoc documentation for debugger-linecache-1.1.1...
Couldn't find file to include 'VERSION' from lib/linecache19.rb
Installing RDoc documentation for debugger-1.1.4...

それで私は問題を調査し、ついにこの投稿に出くわしました:

ruby 1.9.3 /Rails3.2.1にruby-debugをインストールするにはどうすればよいですか

コマンドを試すまで、すべてが機能しました。

gem install ruby-debug-base19-0.11.26.gem -- --with-ruby-include=$SANDBOX/packages/ruby-1.9.3-p194

上記の最初のエラーを再現しただけです。だから私は調べました

rb_method_entry_t.called_id

そして、この投稿を見つけました:https ://github.com/ruby/ruby/pull/56/#issuecomment-3463264

再ハッシュを除いて、彼が提案した手順を試しました(rvmの使い方がわからないため、試すためだけにrbenvに切り替えたくありませんでした)。彼が推奨するすべてのgemをフォルダーにダウンロードし、次のコマンドを実行しました。

gem install *.gem -- --with-ruby-include=$(echo ~/.rvm/rubies/1.9.3-p194/include/ruby-1.9.1/ruby-1.9.3-p194/) --no-rdoc --no-ri

linecache19-0.5.13は正常にインストールされましたが、ruby-debug-base19-0.11.26.gemでチョークされ、最初のエラーが再び発生しました。

また、sudo gem installデバッガーを実行したときに追加されたデバッガーgemをアンインストールしようとしましたが、何も変更されていません。

私は次に何をすべきか途方に暮れています。

4

3 に答える 3

0

ruby-デバッグはruby1.9で壊れています。代わりに、「pry」を試してください。たぶん、ruby-debugを機能させることは可能ですが、私はそれを期待していません。

ruby1.9でのデバッグ

于 2012-07-27T01:22:12.303 に答える
0

私はこの質問がかなり古いことを知っていますが、今日同じエラーが発生しました。これは、エラーをグーグルで検索したときの最初の結果です。

私にとって、デバッガーは依存関係としてインストールして実行していました

gem install debugger

バンドルが修正する前に。

于 2014-06-26T16:07:14.173 に答える
0

RVMを介してインストールされたRuby2.0.0でこれに遭遇しました。

RVMは、バイナリが利用可能な場合はバイナリとともにインストールするだけです。これは高速ですが、デバッガーにもソースが必要です。

rvm reinstall 2.0.0 --disable-binary
于 2014-10-27T18:40:04.527 に答える