Vampyrah Broadcasting wrote: > Do you mean "surf -g"? Nope, I mean to edit the config.mk, change the two lines to be this:
CFLAGS = -std=c99 -pedantic -Wall -g -O0 ${INCS} ${CPPFLAGS} LDFLAGS = -g ${LIBS} Then recompile by calling `make` and run surf in gdb `gdb ./surf`. This will give you a commandline. From there you can start surf by typing `run`. Then reproduce the crash in the newly spawned surf instance and when the prompt in gdb appears again, type `bt full` and post the output. You can then quit gdb by typing `quit` and confirming. --Markus