summaryrefslogtreecommitdiff
path: root/docs/debugging-openadk.txt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-04-02 07:37:27 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-04-02 07:37:27 +0200
commit7236e468162b3af51c0acecad10fbef1838c06ad (patch)
tree9c8027cf769aaa7ef7f0a6330b34d7666238b920 /docs/debugging-openadk.txt
parenta691abc857458de0023f5e532feee866af0218ed (diff)
parent309f13ab6858e1c1639814e210a6c86380ca717b (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'docs/debugging-openadk.txt')
-rw-r--r--docs/debugging-openadk.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/debugging-openadk.txt b/docs/debugging-openadk.txt
new file mode 100644
index 000000000..ba48b273e
--- /dev/null
+++ b/docs/debugging-openadk.txt
@@ -0,0 +1,29 @@
+// -*- mode:doc; -*-
+// vim: set syntax=asciidoc:
+
+[[debugging-openadk]]
+
+Debugging OpenADK
+-----------------
+
+To analyze any build problems, use verbose output:
+
+----
+ $ make v
+----
+
+To analyze any inter package dependency problems, use make debug output:
+
+----
+ $ make --debug=b
+----
+
+If you have a problem with a specific package, use following command
+to capture the output and send it to the OpenADK developer:
+
+----
+ $ make package=<pkgname> clean package > pkgname.log 2>&1
+----
+
+
+