Please note that User Registration has been temporarily disabled due to a recent increase in automated registrations. If anyone needs an account, please request one here: RequestAccount. Thanks for your patience!
Difference between revisions of "Inspect DEPENDS"
From Openembedded.org
m |
|||
| Line 5: | Line 5: | ||
bitbake --dry-run --verbose $packagename | grep "current path" | less | bitbake --dry-run --verbose $packagename | grep "current path" | less | ||
| − | should give you that information. | + | should give you that information. Another way is the more recent |
| + | |||
| + | bitbake -g $packagename && less *.dot | ||
[[Category:FAQ]] | [[Category:FAQ]] | ||
[[Category:Debug build]] | [[Category:Debug build]] | ||
Revision as of 11:02, 24 June 2008
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