this may be a stupid question, but if I run into an abort() (c-code), what's the easiest way to find out where it was called? Is there something better than "run the whole thing in gdb" or "add a printf to every abort() call"?
Conversation
Replying to
abort will generate a core dump (if they're enabled) and you can get it from there with gdb or another tool.

