Ditto! I'm using the Open Perl IDE abandonware from sourceforge, and I assume from your mention of the perl5db.pl file, you've got the same. I got mine working (see qualifications below) by editing the use statements in the file:
use strict;
no strict "refs";
use Win32; # add this
use Cwd;
use File::Spec;
use IO::Socket::INET;
use feature ':5.10'; # add this
use Switch; # add this if you want to use given/when
However, the IDE has some 'issues'. You can set a breakpoint only on a statement in the edit window; there is no way to set conditional breakpoints. And for reasons that are beyond me, when you are working with a GUI done in Tkx, you can no longer look at the contents of variables in the variables window - they all say <internal item>.
I cannot make Perl Express work at all, I just keep getting a warning dialog letting me know that the debugger is running.
I am more or less happy with Open Perl IDE within its limitations, but like you I'd love to find a good, working free IDE - I work for a nonprofit and there is zero chance that they will buy software.
Hope my two cents' worth helps. | [reply] [d/l] |
Thanks for your reply. I`m still not having any luck with it Perl IDE. I`m using Vista 64-bit and wondering if that has anything to do with it. My code executes fine, I just can`t use breakpoints to debug.
After making the changes, when I use a breakpoint, perlide now does nothing when I run the script. In fact I can`t even close PerlIDE after I have run a script with a breakpoint
I have downloaded Komodo IDE as a trial and will see if that at least works. If not, something may be wrong with my environment setup.
| [reply] |
| [reply] [d/l] |
Hey DarrenM!
I've been having a lot of luck using this plugin for Eclipse called "E-P-I-C":
http://www.eclipse.org
http://www.epic-ide.org/index.php
I know that Eclipse is a kind of a beast, but, for my purposes it's great. It definitely has debugging breakpoint support, and a buncho' other neat things. It works great on Linux and Win32 for sure.
Kurt
| [reply] |