Debug segfault on Windows?

I'm working on debugging an allocator on Windows, and I'm getting a segfault. I've tried using gdb (provided by Cygwin), but it's unable to give me a stack trace.

Does anyone know a good way to get a stack trace after a segfault on Windows?

If you're using gdb on a windows-msvc binary, it may do better on a windows-gnu binary.

3 Likes

That worked, thanks!