| Message |
 |
Date: 2010-02-11 10:01
Sender: Katherine Katherine
Great workaround to install ruby-debug and ruby-debug-ide:
http://www.definenull.com/content/netbeans-6-ruby-fast-debugger
In brief:
Download ruby-debug-base gem
from http://rubyforge.org/frs/download.php/46863/ruby-debug-base-
0.10.3-mswin32.gem to
C:\some_location
cd /d C:\some_location
gem install ruby-debug-base -l
gem install ruby-debug
gem install ruby-debug-ide -v 0.4.6 |
Date: 2008-02-28 18:09
Sender: Fred Seltzer
Hmmm. I just hacked up my copy of config.h to no longer
require the specific version of the C compiler and it built
and ran just fine. I don't want to go back and revisit
this. Let's call it closed...
Fredonrails...
|
Date: 2008-02-28 11:52
Sender: Martin Krauskopf
Seem the binary was released and this might be fixed? |
Date: 2008-02-13 14:28
Sender: Martin Krauskopf
We quickly tried on colleague's Windows:
gem install -l ruby-debug-base-0.10.0-mswin32.gem
gem install -r --ignore-dependencies ruby-debug -v 0.10.0
and seems to work smoothly. |
Date: 2008-02-13 07:24
Sender: Martin Krauskopf
Fred, could you try the gem Rocky built. I do not have access
to Windows machine just now but I'll try later today (Europe)
in the office. If it works for both of us it would likely mean
kind of 'go'. |
Date: 2008-02-08 01:46
Sender: Rocky Bernstein
Using instructions from eigenclass
http://eigenclass.org/hiki.rb?cmd=view&p=cross+compiling+rcov
rt&key=mingw I've been able to build a mswin32 gem for
ruby-debug-base.
I'm not sure how well it works or if it works at all. So I've
put it temporarily at http://bashdb.sf.net/ruby-debug-base-0.10.0
-mswin32.gem
But if this is useable, let me know and I'll add it to the ruby-debug
files section on rubyforge.
Martin: the intention wasn't not to provide mswin32 binaries,
so much as not knowing how to do so. Windows remains a pest.
In the past, Kent has handled making mswin32 gems.
Fred: My understanding regarding the problem with using a newer
C compiler is that the runtime is not compatible with the older
one. I am given to believe that you'd find a problem when you
have extensions using the older runtime that use things that
are not compatible with the newer runtime. Caveat Emptor.
|
Date: 2008-02-07 17:01
Sender: Fred Seltzer
I finally decided to gamble with my slightly newer compiler,
which says it is:
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version
13.10.3077 for 80x86
I just took out the lines in config.h that asked for version
12 and reinstalled the gem. It built fine and installed the
debugger. The debugger seems to work fine. I've used to
find bugs in my Rails app. This is version 0.10.0 of
ruby-debug and ruby-debug-base.
Kinda like living on the edge. Or the fast lane. Or something.
|
Date: 2008-02-06 20:03
Sender: Martin Krauskopf
Hi Rocky. Do you plan to release pre-compiled binary for 0.10.0
and the future releases. This was used to be in "<=
0.9.3" times. We somehow "depend" on it in the
IDE. |
Date: 2008-01-07 23:05
Sender: Rocky Bernstein
To install on Microsoft Windows, unless you run under cygwin
or mingw, you'll need Microsoft Visual C++ 6.0 -- also known
as VC6.
http://rubyforge.org/tracker/index.php?func=detail&aid=16774
&group_id=1900&atid=7436
suggests why.
Or as you note, use an older pre-compiled binary.
|
Date: 2008-01-03 08:59
Sender: Fred Seltzer
The workaround is to go back one version:
> gem install ruby-debug -v 0.9.3
|