sqlite3-ruby gem: Failed to build gem native extension - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T15:41:44Zhttp://stackoverflow.com/feeds/question/43778http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension4sqlite3-ruby gem: Failed to build gem native extensionCharles Roper2008-09-04T13:40:19Z2009-08-07T20:36:51Z
<p><strong>Update:</strong> Check out this follow-up question: <a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken"><strong>Gem Update on Windows - is it broken?</strong></a></p>
<p><hr /></p>
<p>On Windows, when I do this:</p>
<pre><code>gem install sqlite3-ruby
</code></pre>
<p>I get the following error:</p>
<pre><code>Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby:
ERROR: Failed to build gem native extension.
c:/ruby/bin/ruby.exe extconf.rb install sqlite3-ruby --platform Win32
checking for fdatasync() in rt.lib... no
checking for sqlite3.h... no
nmake
'nmake' is not recognized as an internal or external command,
operable program or batch file.
Gem files will remain installed in c:/ruby/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.2.4 for inspection.
Results logged to c:/ruby/lib/ruby/gems/1.8/gems/sqlite3-ruby-1.2.4/ext/sqlite3_api/gem_make.out
</code></pre>
<p><strong>Same thing happens with the hpricot gem</strong>. I seem to remember these gems installed just fine on < 1.0 gems, but now I'm on 1.2.0, things have gone screwy.</p>
<p>I have also tried this:</p>
<pre><code>gem install sqlite3-ruby --platform Win32
</code></pre>
<p>Needless to say, this doesn't work either (same error)</p>
<p>Does anyone know what is going on here and how to fix this?</p>
<p><hr /></p>
<p><strong>Update:</strong> Check out this follow-up question: <a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken"><strong>Gem Update on Windows - is it broken?</strong></a></p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/43804#438042Answer by Nathan Fritz for sqlite3-ruby gem: Failed to build gem native extensionNathan Fritz2008-09-04T13:54:46Z2008-09-04T13:54:46Z<p>Is it possible that the newest version has not yet been ported to Win32 yet? Since this particular gem does have bindings to compiled code, it would require a platform-specific gem. If I force installation of version 1.2.3 rather than the current 1.2.4, the platform-specific version does install, but when I allow gem to try to install the current version, I get the generic 1.2.4 version (in the gems library folder, it lacks the -x86-mswin32 suffix that the other sqlite3-ruby folders have in their names.</p>
<p>Maybe someone else can answer how gem handles platform specific gems. Are separate gems uploaded for each platform and the gem software selects which one to pull down?</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/43840#4384017Answer by Charles Roper for sqlite3-ruby gem: Failed to build gem native extensionCharles Roper2008-09-04T14:13:02Z2009-03-03T08:20:55Z<p>As Nathan suggests, this does appear to be related to the fact that the latest versions of the sqlite3-ruby and hpricot gems don't appear to have Windows versions. Here's what to do when faced with this situation (note, the name of the gem is automatically wildcarded, so you can type just <em>sql</em> and get a list of all gems beginning with <em>sql</em>):</p>
<pre><code>$ gem list --remote --all sqlite
*** REMOTE GEMS ***
sqlite (2.0.1, 2.0.0, 1.3.1, 1.3.0, 1.2.9.1, 1.2.0, 1.1.3, 1.1.2, 1.1.1, 1.1)
sqlite-ruby (2.2.3, 2.2.2, 2.2.1, 2.2.0, 2.1.0, 2.0.3, 2.0.2)
sqlite3-ruby (1.2.4, 1.2.3, 1.2.2, 1.2.1, 1.2.0, 1.1.0, 1.0.1, 1.0.0, 0.9.0, 0.6.0, 0.5.0)
</code></pre>
<p>Then you can choose the version you would like to install:</p>
<pre><code>gem install sqlite3-ruby -v 1.2.3
</code></pre>
<p>To successfully install hpricot, I did this:</p>
<pre><code>gem install hpricot -v 0.6
</code></pre>
<p>Annoyingly, doing a <strong><code>gem update</code></strong> tries to update the gems to their latest, broken-on-Windows, versions. When the update routine encounters an error, it ditches you out of the whole process. There's a (hacky) solution to this problem <strong><a href="http://stackoverflow.com/questions/134581/gem-update-on-windows-is-it-broken">here</a></strong>.</p>
<p><strong>So, is this issue a bug in gems? Should gems not automatically detect the platform and install the latest compatible version?</strong></p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/43963#439632Answer by Nathan Fritz for sqlite3-ruby gem: Failed to build gem native extensionNathan Fritz2008-09-04T15:08:02Z2008-09-04T15:08:02Z<p>@<a href="#43840" rel="nofollow">charlesroper</a></p>
<p>I suspect that the issue might be a bug in the gem and not with the gem system as a whole. If the gem doesn't specify that it is platform specific, the gem system probably assumes that it is a platform-agnostic gem and tries to install it.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/276189#2761891Answer by iongion for sqlite3-ruby gem: Failed to build gem native extensioniongion2008-11-09T17:46:25Z2008-11-09T17:46:25Z<p>on windows it is impossible to run gem update(unless you have a development machine for ruby itself+dozens of other headers), is there no way of skipping sqlite and hpricot and have a decent update for all the gems ... ?</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/336287#3362871Answer by Ilya Radchenko for sqlite3-ruby gem: Failed to build gem native extensionIlya Radchenko2008-12-03T05:16:57Z2008-12-03T05:16:57Z<p>Had the same problem, thanks for the help.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/366757#3667571Answer by TomV for sqlite3-ruby gem: Failed to build gem native extensionTomV2008-12-14T17:22:31Z2008-12-14T17:22:31Z<p>I also ran into this problem. It's worth knowing that the difference between 1.2.3 and 1.2.4 is not significant. Here are the 1.2.4. release notes:</p>
<blockquote>
<p><strong>Release Name: 1.2.4</strong></p>
<p>Notes: This release only updates the
generated C file to reflect the
compatibility changes that were made
to the SWIG file. Binary builds (e.g.,
Windows) are not affected, and need no
update. In general, you will not need
this update unless you are using a
version of Ruby prior to 1.8.6.
(source: <a href="http://rubyforge.org/frs/shownotes.php?release_id=25302" rel="nofollow" title="rubforge release notes on 1.2.4">1.2.4. release notes</a>)</p>
</blockquote>
<p>Hope that helps others!</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/429289#4292891Answer by john for sqlite3-ruby gem: Failed to build gem native extensionjohn2009-01-09T19:07:05Z2009-01-09T19:07:05Z<p>thanks a bunch. this was very annoying</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/476596#4765961Answer by Mercurious for sqlite3-ruby gem: Failed to build gem native extensionMercurious2009-01-24T20:17:32Z2009-01-24T20:17:32Z<p>I had the same problem on Ubuntu, this solved the problem for me:</p>
<p><a href="http://newsgroups.derkeiler.com/Archive/Comp/comp.lang.ruby/2008-08/msg00339.html" rel="nofollow">http://newsgroups.derkeiler.com/Archive/Comp/comp.lang.ruby/2008-08/msg00339.html</a></p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/579893#5798931Answer by dmondark for sqlite3-ruby gem: Failed to build gem native extensiondmondark2009-02-23T23:48:57Z2009-02-23T23:48:57Z<p>Had the same issue. Many thanks guys.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/641303#6413031Answer by GreenKiwi for sqlite3-ruby gem: Failed to build gem native extensionGreenKiwi2009-03-13T02:53:02Z2009-03-13T02:53:13Z<p>Ditto, thanks.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/656890#6568901Answer by alex for sqlite3-ruby gem: Failed to build gem native extensionalex2009-03-18T03:37:02Z2009-03-18T03:37:02Z<p>great thanks!</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/731678#7316781Answer by Rony for sqlite3-ruby gem: Failed to build gem native extensionRony2009-04-08T20:27:15Z2009-04-08T20:27:15Z<p>I also had this annoying problem. Thanks guys.</p>
http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/1246882#12468820Answer by Alpha Monk for sqlite3-ruby gem: Failed to build gem native extensionAlpha Monk2009-08-07T20:36:51Z2009-08-07T20:36:51Z<p>Very nice tutorial. I was able to get everything up to this point fine. This site was the only place I could find that mentioned this command. $ gem list --remote --all sqlite. Of course this was what I was missing. Thanks a lot.</p>