Issue
I want the program to dump core on crash on Linux for debugging purpose. How do I enable this feature - does this require any changes in the program ?
id='dv3'>
Solution
You can either enable it for yourself by doing:
ulimit -c unlimited
If you want this to be persistent put it in ~/.profile
Alterantively, you can enable core dumps for all users on the system put the following line in /etc/sercurity/limits.conf (at least on ubuntu):
* 0 core -1
Answered By - goji Answer Checked By - Mary Flores (WPSolving Volunteer)