Inspect DEPENDS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (follow rename) |
||
Line 5: | Line 5: | ||
bitbake -g <packagename> && less task-depends.dot | bitbake -g <packagename> && less task-depends.dot | ||
unfortunately the graph is large and many | unfortunately the graph is large and many dot viewers will struggle with it. The "taskexp" UI also provides a graphical way to view dependencies: | ||
bitbake -g <packagename> -u | bitbake -g <packagename> -u taskexp | ||
[[Category:FAQ]] | [[Category:FAQ]] | ||
[[Category:Debug build]] | [[Category:Debug build]] |
Latest revision as of 20:01, 17 April 2018
How do do I inspect dependencies for recipes?
You can get the dependency graph information using:
bitbake -g <packagename> && less task-depends.dot
unfortunately the graph is large and many dot viewers will struggle with it. The "taskexp" UI also provides a graphical way to view dependencies:
bitbake -g <packagename> -u taskexp