rubyのgem install dm-sqlite-adapterに失敗したときの対処
2017年01月06日
Windows環境でrubyのgem「dm-sqlite-adapter」をインストールしようとしたところ、エラーが発生したのでそのときの対処法をメモ。
■発生したエラー
C:\Users\XXX>gem install dm-sqlite-adapter
Building native extensions. This could take a while...
ERROR: Error installing dm-sqlite-adapter:
ERROR: Failed to build gem native extension.
current directory: C:/ruby/lib/ruby/gems/2.2.0/gems/do_sqlite3-0.10.17/ext/do_sqlite3
C:/ruby/bin/ruby.exe -r ./siteconf20170106-8624-1mhyh1k.rb extconf.rb
checking for sqlite3.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
--without-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=C:/ruby/bin/$(RUBY_BASE_NAME)
--with-sqlite3-dir
--without-sqlite3-dir
--with-sqlite3-include
--without-sqlite3-include=${sqlite3-dir}/include
--with-sqlite3-lib
--without-sqlite3-lib=${sqlite3-dir}/lib
To see why this extension failed to compile, please check the mkmf.log which can be found here:
C:/ruby/lib/ruby/gems/2.2.0/extensions/x64-mingw32/2.2.0/do_sqlite3-0.10.17/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in C:/ruby/lib/ruby/gems/2.2.0/gems/do_sqlite3-0.10.17 for inspection.
Results logged to C:/ruby/lib/ruby/gems/2.2.0/extensions/x64-mingw32/2.2.0/do_sqlite3-0.10.17/gem_make.out
なんかsqlite3.hってのが見つからないらしい。
■対処法
参考:Ruby2.0.0にsqlite3をぶち込むまでの過程
上記サイトはgem「sqlite3」のインストール時のものだけど、同様の対処でいけた。
手順1:
参考サイトと同じ手順でSqlite3のファイルをローカルに配置する。
1. SQLite Download Pageから以下のファイルをダウンロードする
・sqlite-amalgamation-3071502.zip
・sqlite-shell-win32-x86-3071502.zip
・sqlite-dll-win32-x86-3071502.zip
2. C:\直下にsqlite3というフォルダを作成、その中にlibyというフォルダを作る
3. 先ほどダウンロードしたファイルを全て解凍し、中に入っていた全てのファイルを
・sqlite3
・liby
の両方へコピーする
「sqlite-shell-win32-x86-3071502.zip」ってのが見当たらなかったので、代わりにそれっぽい「sqlite-tools-win32-x86-3160100.zip」を入れた。(必要だったかどうかは知らない)
手順2:
オプションを付けてgem installを実行。
gem install dm-sqlite-adapter -- --with-opt-include=c:\sqlite3 --with-sqlite3-lib=c:\sqlite3/liby
Building native extensions with: '--with-opt-include=c:\sqlite3 --with-sqlite3-lib=c:\sqlite3/liby'
This could take a while...
Successfully installed do_sqlite3-0.10.17
Fetching: dm-sqlite-adapter-1.2.0.gem (100%)
Successfully installed dm-sqlite-adapter-1.2.0
Parsing documentation for do_sqlite3-0.10.17
Installing ri documentation for do_sqlite3-0.10.17
Parsing documentation for dm-sqlite-adapter-1.2.0
Installing ri documentation for dm-sqlite-adapter-1.2.0
Done installing documentation for do_sqlite3, dm-sqlite-adapter after 0 seconds
2 gems installed
成功!
old « ポトス(ライム)とモンステラを買った | メイン | rubyのDataMapperで「cannot load such file -- do_sqlite3/2.2/do_sqlite3」ってなったときの対処法 » new