Inspect DEPENDS: Difference between revisions
Jump to navigation
Jump to search
(Undo revision 2184 by 93.144.17.199 (Talk)) |
(Undo revision 2183 by 93.144.17.199 (Talk)) |
||
Line 8: | Line 8: | ||
bitbake -g $packagename && less *.dot | bitbake -g $packagename && less *.dot | ||
[[Category:FAQ]] | [[Category:FAQ]] | ||
[[Category:Debug build]] | [[Category:Debug build]] |
Revision as of 04:04, 13 February 2010
How do do I inspect compile-time dependencies for packages?
You want a "visual" output of the dependency tree for a particular package?
bitbake --dry-run --verbose $packagename | grep "current path" | less
should give you that information. Another way is the more recent
bitbake -g $packagename && less *.dot