Re: [yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Paul Eggleton
On Tuesday 17 July 2012 15:49:16 Jon Szymaniak wrote: > > From what I gather looking > > at recipes-qt/qt4/* a bit, the point here is to rename libs to > > differentiate between the libs generated by the embedded and X11-based > > recipes, right? That's correct. > > I ended up including -qtlibinf

Re: [yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Jon Szymaniak
>>> Since you're providing your own value of QT_CONFIG_FLAGS I think you're >>> missing -embedded $QT_ARCH and possibly -qtlibinfix ${QT_LIBINFIX} (see >>> meta/recipes-qt/qt4/qt4-embedded.inc). >>> >>> Cheers, >>> Paul >>> >>> -- >>> >>> Paul Eggleton >>> Intel Open Source Technology Centre >> >>

Re: [yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Jon Szymaniak
>> Since you're providing your own value of QT_CONFIG_FLAGS I think you're >> missing -embedded $QT_ARCH and possibly -qtlibinfix ${QT_LIBINFIX} (see >> meta/recipes-qt/qt4/qt4-embedded.inc). >> >> Cheers, >> Paul >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre > > Whoops! I mos

Re: [yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Jon Szymaniak
>> QT_CONFIG_FLAGS := "-release -no-rpath -reduce-relocations -shared\ >> -no-mmx -no-3dnow -no-sse -no-sse2 -no-sse3 -no-sse4.1 -no-sse4.2 -no-avx\ >> -no-glib -no-largefile -no-accessibility -no-openssl -no-gtkstyle >> -no-exceptions\ >> -no-xcursor -no-xinerama -no-phonon -no-phonon-backend -

Re: [yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Paul Eggleton
On Tuesday 17 July 2012 10:46:56 Jon Szymaniak wrote: > QT_CONFIG_FLAGS := "-release -no-rpath -reduce-relocations -shared\ > -no-mmx -no-3dnow -no-sse -no-sse2 -no-sse3 -no-sse4.1 -no-sse4.2 -no-avx\ > -no-glib -no-largefile -no-accessibility -no-openssl -no-gtkstyle > -no-exceptions\ > -no-xcu

[yocto] do_configure() failure with my qt4-embedded_4.8.0.bbappend

2012-07-17 Thread Jon Szymaniak
Hi there, I'm working on building some embedded (arm) Qt 4.8.0 applications, and would like to strip out a lot of unused functionality. I have a set of config flags that I've used in the past when configuring Qt outside of the Yocto workflow. As you'll see below, I'm basically just looking for fra