Creating core dumps on Cygwin

I need to enable basic dumps in cygwin. I used ulimit -c unlimited , but when the program I want to debug is disconnected, there is still no coredump in the directory. This is really the right way to enable core dumps, and where can I find the dump then?

+6
source share
1 answer

That should work. Which shell are you using?

Do not forget that the dump is not called the "core" ... rather, on a Windows machine with Cygwin, something like "mybadprog.exe.stackdump" will most likely be called

-1
source

Source: https://habr.com/ru/post/916600/


All Articles