プロジェクトに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 ☺
私は探していましたが、実用的な解決策を見つけることができませんでした。
これはあなたを助けるかもしれない、それは私のために働く
gem install debugger-linecache -v '1.1.2' -- --with-Ruby-include=$rvm_path/src/Ruby-1.9.3-p286/
このエラーは、選択したバージョンのdebugger
が現在のRubyバージョンをサポートしていません。2つの解決策があります。
bundle update debugger
を介してdebugger
gemを更新します。 debugger
の新しいバージョンは、古いRuby=バージョンと後方互換性があるため、これを修正する最良の方法です。gem debugger-Ruby_core_source
を更新/インストールします。
gem install debugger-Ruby_core_source
ここで修正されました: https://github.com/cldwalker/debugger-Ruby_core_source/pull/7
問題は、gemsetsを誤って使用していたことです。 RVMでは何もインストールするのにSudoは必要ないので、権限がないことが問題であることはわかっていました。
rvm gemset use global
に続いてbundle install
トリックをしました。
以下のリンクから:
https://github.com/cldwalker/debugger/issues/5
GemRuby-debug19をインストールし、以下のように問題を解決しました:
$ bundle
... -> failed to build debugger-linecache
$ gem install Ruby-debug19
$ bundle
... -> all is fine
私の場合、問題はdebugger-linecache
に直接関係していませんでした。 debugger-Ruby_core_source
をアップグレードするか、またはRuby=いくつかのパッチレベルでダウングレードします。
bundle update debugger-linecache
を実行しました。 Gemfile.lockに最新バージョンがありましたが、debugger-Ruby_core_source
が1.1.5にアップグレードされ、debugger-linecacheが文句を言うのを止めました。
ここで古い回答を熟読した上で、debugger-Ruby_core_source gemをインストールしました: https://github.com/cldwalker/debugger/issues/12
Gemfile.lockは、バンドルしようとしているものと同じRubyで書かれていません。
bundle update
は、Bundlerに異なるバージョンを表示させることで機能します。
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
手動でビルドします。それは私のために働く https://Gist.github.com/406026