summaryrefslogtreecommitdiff
path: root/docs/debugging-openadk.txt
blob: ba48b273e3dccdf12489a9211007a0104fe6e62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
----