summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/debugging.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/documentation/dev-manual/debugging.rst b/documentation/dev-manual/debugging.rst
index e20637e1c6..92458a0c37 100644
--- a/documentation/dev-manual/debugging.rst
+++ b/documentation/dev-manual/debugging.rst
@@ -270,13 +270,17 @@ format and can be converted to images (e.g. using the ``dot`` tool from
270 displays paths between graph nodes. 270 displays paths between graph nodes.
271 271
272You can use a different method to view dependency information by using 272You can use a different method to view dependency information by using
273the following command:: 273either::
274 274
275 $ bitbake -g -u taskexp recipename 275 $ bitbake -g -u taskexp recipename
276 276
277This command 277or::
278displays a GUI window from which you can view build-time and runtime 278
279dependencies for the recipes involved in building recipename. 279 $ bitbake -g -u taskexp_ncurses recipename
280
281The ``-u taskdep`` option GUI window from which you can view build-time and
282runtime dependencies for the recipes involved in building recipename. The
283``-u taskexp_ncurses`` option uses ncurses instead of GTK to render the UI.
280 284
281Viewing Task Variable Dependencies 285Viewing Task Variable Dependencies
282================================== 286==================================