So you have a perl interpreter embedded in your C program (actually it's a Mac Cocoa program, but that's probably not relevant).
You want to debug the perl modules running inside your app because it seems to behave differently (and incorrectly) to on the "outside", so you pass -d as an argument to perl_parse.
When I try that I get the perl debugger intro text printing out, but the code never actually stops and I never get a debugger prompt. I tried locally and with the RemotePort option to connect via tcp with the same result - debugger welcome text every time, but it never stops to listen.
Any ideas?
Update: Dear future me: the solution was as simple as adding a perl_run(). It's not strictly required normally since I run code via call_perl() etc. but since the perl debugger is simple code in perl5db.pl that gets executed at require time, it was never actually getting executed.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.