vote up 1 vote down star

I'm using Bash. I used ulimit -c unlimited but the program still doesn't generate a core file. It may be due to the GUI debugger kicking in. I get the option to save the crash info to a file, but I really want a core file.

Edit: I just wrote a small non-gui program meant to crash, and it produced a core dump.

flag

can you prevent the GUI debugger from kicking in? – lexu Oct 16 at 6:15
Have you ran it directly from the commandline with no GUI involved, does that get you a core file? – Vinko Vrsalovic Oct 16 at 6:16
It's whatever comes with Fedora. I don't know if I can disable it. I really don't want to disable it globally though. It is only started with GUI programs when they crash. – Scott Oct 16 at 6:17
@Vinko: Yes, I'm programming and starting it all in a bash shell. – Scott Oct 16 at 6:18
@Scott: But does that get you a core file? – Vinko Vrsalovic Oct 16 at 6:20
show 3 more comments

1 Answer

vote up 1 vote down check

The simplest way is to run your app from the command line within gdb:

gdb --args /path/to/program with args

I assume the program that's causing you problems is Bug Buddy? You can always remove it or tweak your program to reset the default SIGSEGV handle to SIG_DFL after the GTK start-up to ensure the OS catches the signal and not any magic handling by the GUI libraries.

link|flag

Your Answer

Get an OpenID
or

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