Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Perl Debugger

Status
Not open for further replies.

snookmz

Programmer
Apr 17, 2001
46
0
0
AU
G'day all

I was wondering whether any of you perl gurus out there could recommend a good perl debugger... Iv looked at a few, but so far im not impressed with what i find..

any suggestions would be grately appreciated, thanks in advance :)
 
ActiveState has just released Komodo, in adition to the PDK.

Thierry


 
have you tried the built-in debugger....

prompt> perl -d yourCode.pl

You can set breaks, skip to the break, print variables to see what they contain...etc...

HTH




keep the rudder amid ship and beware the odd typo
 
Note: your perl may not be compiled with the built in debugger. try it and see. if not, you can recompile with a '-D' option and it'll install it. you could even have two versions of perl running, one with the debugger and one without, for a minor performance gain in the one without... "If you think you're too small to make a difference, try spending a night in a closed tent with a mosquito."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top