[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Beginner help: Problem installing sqlite3 on Windows XP

Kasper Frederiksen

8/28/2008 1:14:00 PM

Hi Everyone,

I am new to Ruby, and i keep getting stuck in the same place getting
started.

I hope someone is able to help me. I am trying to install sqlite3 and
have been following several tutorials, and it all looke very simple, but
i keep running in to this problem.

I have installed ruby and gem.

C:\>ruby -v
ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]

C:\>gem --version
1.2.0

I have placed sqlite3.dll, sqlite3.def, sqlite3.exe in my c:\ruby\bin

I keep getting the following error:


---------
C:\>gem install sqlite3-ruby
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
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

--------


Does anyone have an idea what is wrong?

Thanks for your help in advance.

Kind regards,

Kasper
--
Posted via http://www.ruby-....

10 Answers

Lex Williams

8/28/2008 1:20:00 PM

0

You could try installing nmake , and run it again . You can find nmake
here :
http://support.microsoft.com/default.aspx?scid=kb;en-...
--
Posted via http://www.ruby-....

Glen Holcomb

8/28/2008 1:34:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

On Thu, Aug 28, 2008 at 7:13 AM, Kasper Frederiksen <kasper@slashnet.dk>wrote:

> Hi Everyone,
>
> I am new to Ruby, and i keep getting stuck in the same place getting
> started.
>
> I hope someone is able to help me. I am trying to install sqlite3 and
> have been following several tutorials, and it all looke very simple, but
> i keep running in to this problem.
>
> I have installed ruby and gem.
>
> C:\>ruby -v
> ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]
>
> C:\>gem --version
> 1.2.0
>
> I have placed sqlite3.dll, sqlite3.def, sqlite3.exe in my c:\ruby\bin
>
> I keep getting the following error:
>
>
> ---------
> C:\>gem install sqlite3-ruby
> 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
> 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
>
> --------
>
>
> Does anyone have an idea what is wrong?
>
> Thanks for your help in advance.
>
> Kind regards,
>
> Kasper
> --
> Posted via http://www.ruby-....
>
>
try the sqlite3-ruby gem

--
"Hey brother Christian with your high and mighty errand, Your actions speak
so loud, I can't hear a word you're saying."

-Greg Graffin (Bad Religion)

Kasper Frederiksen

8/28/2008 1:53:00 PM

0

Lex Williams wrote:
> You could try installing nmake , and run it again . You can find nmake
> here :
> http://support.microsoft.com/default.aspx?scid=kb;en-...

I tried to download nmake and placed NMAKE.EXE & NMAKE.ERR in the
c:\ruby\bin directory.


This is the result:

C:\>gem install sqlite3-ruby
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
checking for fdatasync() in rt.lib... no
checking for sqlite3.h... no

nmake

Microsoft (R) Program Maintenance Utility Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.

NMAKE : fatal error U1073: don't know how to make 'ruby.h'
Stop.


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
--
Posted via http://www.ruby-....

Kasper Frederiksen

8/28/2008 1:54:00 PM

0

> try the sqlite3-ruby gem
>
> --

Sorry i am new to this. What do you mean by this? thanks for your help
--
Posted via http://www.ruby-....

Glen Holcomb

8/28/2008 2:00:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

On Thu, Aug 28, 2008 at 7:54 AM, Kasper Frederiksen <kasper@slashnet.dk>wrote:

> > try the sqlite3-ruby gem
> >
> > --
>
> Sorry i am new to this. What do you mean by this? thanks for your help
> --
> Posted via http://www.ruby-....
>
>
gem install sqlite3-ruby rather than sqlite. sqlite3-ruby works great for
me in Windows XP.

--
"Hey brother Christian with your high and mighty errand, Your actions speak
so loud, I can't hear a word you're saying."

-Greg Graffin (Bad Religion)

Stephen Boisvert

8/28/2008 5:26:00 PM

0

This thread explains what is going on for you. I use the mswin32
version and have no problems on XP. Sound like you went with the ruby
version and it borked on the compilation step because of missing
tools.

http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/9d5c9e...

Jim Carter

8/28/2008 9:24:00 PM

0

From what I can tell sqlite3-ruby VERSION 1.2.4 does not have an mswin32
gem. To get this to install (with out a lot of C comp) I did this
gem install --version 1.2.3 sqlite3-ruby

version 1.2.3 has a mswin32 gem and installed the correct mswin32
version.
--
Posted via http://www.ruby-....

Glen Holcomb

8/28/2008 9:37:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

On Thu, Aug 28, 2008 at 3:24 PM, Jim Carter <jcarter@frigiddog.com> wrote:

> From what I can tell sqlite3-ruby VERSION 1.2.4 does not have an mswin32
> gem. To get this to install (with out a lot of C comp) I did this
> gem install --version 1.2.3 sqlite3-ruby
>
> version 1.2.3 has a mswin32 gem and installed the correct mswin32
> version.
> --
> Posted via http://www.ruby-....
>
>
Good to know, I guess I haven't installed it in a while.

--
"Hey brother Christian with your high and mighty errand, Your actions speak
so loud, I can't hear a word you're saying."

-Greg Graffin (Bad Religion)

Kasper Frederiksen

8/29/2008 8:25:00 AM

0

Jim Carter wrote:
> From what I can tell sqlite3-ruby VERSION 1.2.4 does not have an mswin32
> gem. To get this to install (with out a lot of C comp) I did this
> gem install --version 1.2.3 sqlite3-ruby

Using version 1.2.3 fixed the problem. Thanks to all of your for trying
to help.

--
Posted via http://www.ruby-....

John T.

9/3/2008 1:44:00 PM

0

Jim Carter wrote:
> From what I can tell sqlite3-ruby VERSION 1.2.4 does not have an mswin32
> gem. To get this to install (with out a lot of C comp) I did this
> gem install --version 1.2.3 sqlite3-ruby
>
> version 1.2.3 has a mswin32 gem and installed the correct mswin32
> version.

Anyone know when and/or if 1.2.4 will have a mswin32 gem built? Not
having the current version causes a 'gem update' command to fail when it
gets to trying to update sqlite3-ruby. Is there a way to have gem update
skip a gem, or continue to the next one if needed, instead of failing
completely?

Thanks.
--
Posted via http://www.ruby-....