web-dev-qa-db-ja.com

Ruby 1.9.3にdebugger-linecacheをインストールする際のエラー

プロジェクトにdebugger-linecacheバージョン1.0.1が必要ですが、インストールしようとすると次のエラーが発生します。

trunk ☺  gem install debugger-linecache -v '1.0.1'
Building native extensions.  This could take a while...
ERROR:  Error installing debugger-linecache:
    ERROR: Failed to build gem native extension.

        /Users/jordanscales/.rvm/rubies/Ruby-1.9.3-p194/bin/Ruby extconf.rb
checking for vm_core.h... no
checking for vm_core.h... no
Makefile creation failed
**************************************************************************
No source for Ruby-1.9.3-p194 provided with debugger-Ruby_core_source gem.
**************************************************************************
*** 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/jordanscales/.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


Gem files will remain installed in /Users/jordanscales/.rvm/gems/Ruby-1.9.3-p194/gems/debugger-linecache-1.0.1 for inspection.
Results logged to /Users/jordanscales/.rvm/gems/Ruby-1.9.3-p194/gems/debugger-linecache-1.0.1/ext/trace_nums/gem_make.out
trunk ☺  

私は探していましたが、実用的な解決策を見つけることができませんでした。

58
Jordan Scales

これはあなたを助けるかもしれない、それは私のために働く

gem install debugger-linecache -v '1.1.2' -- --with-Ruby-include=$rvm_path/src/Ruby-1.9.3-p286/
127
ToooooLong

このエラーは、選択したバージョンのdebuggerが現在のRubyバージョンをサポートしていません。2つの解決策があります。

  1. bundle update debuggerを介してdebugger gemを更新します。 debuggerの新しいバージョンは、古いRuby=バージョンと後方互換性があるため、これを修正する最良の方法です。
  2. Rubyバージョン。
100
rcrogers

gem debugger-Ruby_core_sourceを更新/インストールします。

gem install debugger-Ruby_core_source

ここで修正されました: https://github.com/cldwalker/debugger-Ruby_core_source/pull/7

34
Pierre Ozoux

問題は、gemsetsを誤って使用していたことです。 RVMでは何もインストールするのにSudoは必要ないので、権限がないことが問題であることはわかっていました。

rvm gemset use globalに続いてbundle installトリックをしました。

5
Jordan Scales

以下のリンクから:

https://github.com/cldwalker/debugger/issues/5

GemRuby-debug19をインストールし、以下のように問題を解決しました:

$ bundle
... -> failed to build debugger-linecache
$ gem install Ruby-debug19
$ bundle
... -> all is fine
4
Sumit Munot

私の場合、問題はdebugger-linecacheに直接関係していませんでした。 debugger-Ruby_core_sourceをアップグレードするか、またはRuby=いくつかのパッチレベルでダウングレードします。

bundle update debugger-linecacheを実行しました。 Gemfile.lockに最新バージョンがありましたが、debugger-Ruby_core_sourceが1.1.5にアップグレードされ、debugger-linecacheが文句を言うのを止めました。

3
skalee

ここで古い回答を熟読した上で、debugger-Ruby_core_source gemをインストールしました: https://github.com/cldwalker/debugger/issues/12

2
rubyisbeautiful

Gemfile.lockは、バンドルしようとしているものと同じRubyで書かれていません。

bundle updateは、Bundlerに異なるバージョンを表示させることで機能します。

1
Mike Campbell

Rvmを使用している場合、パスがRubyにつながることを確認してください。rvmのrubiesフォルダーに

$ rvm_path/rubies/Ruby-1.9.3-p448

gem install debugger-linecache -v '1.1.2'---with-Ruby-include = $ rvm_path/rubies/Ruby-1.9.3-p448
1
bilal ahmad

手動でビルドします。それは私のために働く https://Gist.github.com/406026

0
duyvk