Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing perl script which is getting core from Production. I have got core and need to run the gdb on these core file. Can anyone provide me info to connect gdb from perl script.

share|improve this question
Are you asking how to use system('gdb filename')?, or how to manipulate the debugger from within Perl as well? (Try the Expect module, or Expect::Simple, in that case). – DavidO Jul 9 '12 at 7:14
ya Meanwhile I found the search.cpan.org/~jezra/Devel-GDB-2.02/lib/Devel/GDB.pm package which connect the gdb. But my purpose is to connect gdb than run core corefile and whre command into gdb and save the console output into file. – user765443 Jul 9 '12 at 7:26

1 Answer

Can anyone provide me info to connect gdb from perl script.

You don't want to do that.

What you want to do instead, is figure out why your perl is crashing with a core dump in production. To do that, run

gdb /path/to/perl /path/to/core

on the production machine, then issue where command.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.