Adam Kłobukowski wrote:
I need a backtrack where app SIGFPEs. gdb only gives me one frame (__udivsi3) and then 0x00000000. What can I do?
- First increase the stack size of your program to see if it still crashes (stack overflows are very common) - Be sure your program is not compiled with -fomit-frame-pointer (as it disable the usage of stack frames)
- Decrease your optimization level, probably remove any -O option -- Vincent Rivière