Inspect DEPENDS

From Openembedded.org
Revision as of 11:02, 24 June 2008 by Laibsch (talk | contribs)
Jump to: navigation, search

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