aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/CONTRIBUTING
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-20 21:43:38 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-20 21:43:38 +0200
commita2779dd768f89601dab57ef5d8e3eaecbce12d2b (patch)
tree2efd7a677191a3e648f40b73ef8654c6c0d5225a /docs/CONTRIBUTING
parent31bd773563ef7627488e8521cafb4eccd31456b3 (diff)
document gdb stuff
Diffstat (limited to 'docs/CONTRIBUTING')
-rw-r--r--docs/CONTRIBUTING8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/CONTRIBUTING b/docs/CONTRIBUTING
index 86655dd..74d1b36 100644
--- a/docs/CONTRIBUTING
+++ b/docs/CONTRIBUTING
@@ -37,3 +37,11 @@ So ideally, all contributors develop in their experimental, that gets merged int
### MEMORY LEAK CHECKING
valgrind --tool=memcheck --leak-check=full ./uzbl
+
+### DEBUGGING / BACKTRACES
+
+* compile with -ggdb (enabled by default on experimental tree)
+* run: `gdb ./uzbl`
+* `(gdb) run -c /path/to/config`
+* `bt` if it segfaults to see a backtrace
+* you'll find more info on the interwebs