xenomai: new package, only mercury for now supported
[openadk.git] / docs / debugging-openadk.txt
blobba48b273e3dccdf12489a9211007a0104fe6e62f
1 // -*- mode:doc; -*-
2 // vim: set syntax=asciidoc:
4 [[debugging-openadk]]
6 Debugging OpenADK
7 -----------------
9 To analyze any build problems, use verbose output:
11 ----
12  $ make v
13 ----
15 To analyze any inter package dependency problems, use make debug output:
17 ----
18  $ make --debug=b
19 ----
21 If you have a problem with a specific package, use following command
22 to capture the output and send it to the OpenADK developer:
24 ----
25  $ make package=<pkgname> clean package > pkgname.log 2>&1
26 ----