Reputation: 57
I'm having trouble cross compiling Qt5 for beaglebone using openembedded with bitbake. I think in step do_configure
not everything is passed from my *.bbappend and no platform plugins are installed (I need 'linuxfb').
My question will be: how to make bitbake print list of arguments it passes to ./configure
?
Upvotes: 1
Views: 4158
Reputation: 14597
There's a few ways to get that info, I would suggest looking in the recipe work directory:
bitbake -e <recipe> | grep <VARIABLE>
is very useful if you want to know what variable values end up as (check e.g. PACKAGECONFIG and PACKAGECONFIG_CONFARGS values if you're modifying packageconfig).
Upvotes: 5