sqlite3-ruby gem: Failed to build gem native extension - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:41:44Z http://stackoverflow.com/feeds/question/43778 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension 4 sqlite3-ruby gem: Failed to build gem native extension Charles Roper 2008-09-04T13:40:19Z 2009-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 &lt; 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#43804 2 Answer by Nathan Fritz for sqlite3-ruby gem: Failed to build gem native extension Nathan Fritz 2008-09-04T13:54:46Z 2008-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#43840 17 Answer by Charles Roper for sqlite3-ruby gem: Failed to build gem native extension Charles Roper 2008-09-04T14:13:02Z 2009-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#43963 2 Answer by Nathan Fritz for sqlite3-ruby gem: Failed to build gem native extension Nathan Fritz 2008-09-04T15:08:02Z 2008-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#276189 1 Answer by iongion for sqlite3-ruby gem: Failed to build gem native extension iongion 2008-11-09T17:46:25Z 2008-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#336287 1 Answer by Ilya Radchenko for sqlite3-ruby gem: Failed to build gem native extension Ilya Radchenko 2008-12-03T05:16:57Z 2008-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#366757 1 Answer by TomV for sqlite3-ruby gem: Failed to build gem native extension TomV 2008-12-14T17:22:31Z 2008-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#429289 1 Answer by john for sqlite3-ruby gem: Failed to build gem native extension john 2009-01-09T19:07:05Z 2009-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#476596 1 Answer by Mercurious for sqlite3-ruby gem: Failed to build gem native extension Mercurious 2009-01-24T20:17:32Z 2009-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#579893 1 Answer by dmondark for sqlite3-ruby gem: Failed to build gem native extension dmondark 2009-02-23T23:48:57Z 2009-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#641303 1 Answer by GreenKiwi for sqlite3-ruby gem: Failed to build gem native extension GreenKiwi 2009-03-13T02:53:02Z 2009-03-13T02:53:13Z <p>Ditto, thanks.</p> http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/656890#656890 1 Answer by alex for sqlite3-ruby gem: Failed to build gem native extension alex 2009-03-18T03:37:02Z 2009-03-18T03:37:02Z <p>great thanks!</p> http://stackoverflow.com/questions/43778/sqlite3-ruby-gem-failed-to-build-gem-native-extension/731678#731678 1 Answer by Rony for sqlite3-ruby gem: Failed to build gem native extension Rony 2009-04-08T20:27:15Z 2009-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#1246882 0 Answer by Alpha Monk for sqlite3-ruby gem: Failed to build gem native extension Alpha Monk 2009-08-07T20:36:51Z 2009-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>