aboutsummaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING15
1 files changed, 15 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index c24e6ccee..511a88060 100644
--- a/HACKING
+++ b/HACKING
@@ -80,3 +80,18 @@ Coding style:
80 instead of 80 instead of
81 81
82 int i,j; 82 int i,j;
83
84
85
86Build-system:
87
88If you have code that is likely not to compile or build rules you might want to not
89trigger for most developers, use "if HAVE_EXPERIMENTAL" in your Makefile.am. Then
90it is OK to (temporarily) add non-compiling (or known-to-not-port) code.
91
92If you want to compile all testcases but NOT run them, run configure with the
93--enable-test-suppression option.
94
95If you want to obtain code coverage results, run configure with the
96--enable-coverage option and run the coverage.sh script in contrib/.
97