Enable core dump with SDL

I can’t enable core dump facility when linking my prog with SDL.

When I don’t link with SDL, core dump file generates OK (i tweaked ulimit core file size unlimited)

What can be wrong ?

I can’t enable core dump facility when linking my prog with SDL.

When I don’t link with SDL, core dump file generates OK (i tweaked ulimit core file size unlimited)

What can be wrong ?

Add SDL_INIT_NOPARACHUTE to your SDL_Init() call. Be aware that while
this lets the default signal handlers run, it also means SDL can’t clean
up (change video modes back to normal, unlock the mouse, etc) if the
program crashes.

–ryan.