* Tackling compilation errors in qt5 recipe.
@ 2012-08-23 17:59 Sravan
2012-08-24 5:48 ` Martin Ertsås
0 siblings, 1 reply; 3+ messages in thread
From: Sravan @ 2012-08-23 17:59 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1492 bytes --]
Hello,
I never worked on oe/bitbake before.
I am trying to write recipes for Qt5(based on
http://qt-project.org/wiki/Building_Qt_5_from_Git) .
How ever i am stuck with few compilation errors that am able to slowly fix
and move forward, by disabling them through "config" options.
So, far i have used following options in config to get rid of compilation
errors, is it the right approach? My end goal is to have a separate recipe
file for Qt5 that is good enough to run webkit.
Following are the flags that i am using
QT_CONFIG_FLAGS = "-no-avx -no-opengl -no-neon -no-rpath -qconfig full
-release -opensource -confirm-license -no-pch \
-nomake examples -nomake demos -no-sse2 -no-ssse3 \
-nomake tests -no-gtkstyle -nomake translations \
-qt-zlib -qt-libpng -qt-libjpeg -qt-sql-sqlite"
and my
Build Configuration:
BB_VERSION = "1.15.2"
TARGET_ARCH = "i586"
TARGET_OS = "linux"
MACHINE = "qemux86"
DISTRO = "webos"
DISTRO_VERSION = "1.0"
TUNE_FEATURES = "m32 i586"
TARGET_FPU = ""
meta = "(nobranch):1b40dac2c501ae8c8d812cf2866fe7917f144a19"
meta-oe = "(nobranch):31bb03eba7c2e928cbc069eea61a5ae2a8d9fe51"
meta-webos =
"qt5-recipes-qt5:f7df573d4af74b77d8747c9e84c7e8fd2fb70156"
Please suggest how can i be sure that this approach is fine, and wont hurt
me after building webkit to run with Qt5.
-Sravan.
[-- Attachment #2: Type: text/html, Size: 2134 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Tackling compilation errors in qt5 recipe.
2012-08-23 17:59 Tackling compilation errors in qt5 recipe Sravan
@ 2012-08-24 5:48 ` Martin Ertsås
2012-08-24 18:49 ` Sravan
0 siblings, 1 reply; 3+ messages in thread
From: Martin Ertsås @ 2012-08-24 5:48 UTC (permalink / raw)
To: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2122 bytes --]
Hi.
You could have a look at git@github.com:martiert/meta-qt5.git as a
starting point. Have not tried anything but the qt5-x11-free packages,
which makes what is needed for rendering, but it is at least a starting
point.
- Martin
On 08/23/12 19:59, Sravan wrote:
> Hello,
>
> I never worked on oe/bitbake before.
> I am trying to write recipes for Qt5(based
> on http://qt-project.org/wiki/Building_Qt_5_from_Git) .
> How ever i am stuck with few compilation errors that am able to slowly
> fix and move forward, by disabling them through "config" options.
>
> So, far i have used following options in config to get rid of
> compilation errors, is it the right approach? My end goal is to have a
> separate recipe file for Qt5 that is good enough to run webkit.
> Following are the flags that i am using
>
> QT_CONFIG_FLAGS = "-no-avx -no-opengl -no-neon -no-rpath -qconfig full
> -release -opensource -confirm-license -no-pch \
>
> -nomake examples -nomake demos -no-sse2 -no-ssse3 \
>
> -nomake tests -no-gtkstyle -nomake translations \
>
> -qt-zlib -qt-libpng -qt-libjpeg -qt-sql-sqlite"
>
> and my
>
> Build Configuration:
> BB_VERSION = "1.15.2"
> TARGET_ARCH = "i586"
> TARGET_OS = "linux"
> MACHINE = "qemux86"
> DISTRO = "webos"
> DISTRO_VERSION = "1.0"
> TUNE_FEATURES = "m32 i586"
> TARGET_FPU = ""
> meta = "(nobranch):1b40dac2c501ae8c8d812cf2866fe7917f144a19"
> meta-oe = "(nobranch):31bb03eba7c2e928cbc069eea61a5ae2a8d9fe51"
> meta-webos =
> "qt5-recipes-qt5:f7df573d4af74b77d8747c9e84c7e8fd2fb70156"
>
>
> Please suggest how can i be sure that this approach is fine, and wont
> hurt me after building webkit to run with Qt5.
>
> -Sravan.
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
[-- Attachment #2: Type: text/html, Size: 4510 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Tackling compilation errors in qt5 recipe.
2012-08-24 5:48 ` Martin Ertsås
@ 2012-08-24 18:49 ` Sravan
0 siblings, 0 replies; 3+ messages in thread
From: Sravan @ 2012-08-24 18:49 UTC (permalink / raw)
To: Martin Ertsås; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 2582 bytes --]
Hi,
Thanks for the reply. Looks like it is still WIP as you pointed out. I just
wanted to know if you were able to figure out if you
were able to fix libGl linking issues with qemu machine.?
-Sravan.
On Thu, Aug 23, 2012 at 10:48 PM, Martin Ertsås <mertsas@cisco.com> wrote:
> Hi.
>
> You could have a look at git@github.com:martiert/meta-qt5.git as a
> starting point. Have not tried anything but the qt5-x11-free packages,
> which makes what is needed for rendering, but it is at least a starting
> point.
>
> - Martin
>
>
> On 08/23/12 19:59, Sravan wrote:
>
> Hello,
>
> I never worked on oe/bitbake before.
> I am trying to write recipes for Qt5(based on
> http://qt-project.org/wiki/Building_Qt_5_from_Git) .
> How ever i am stuck with few compilation errors that am able to slowly fix
> and move forward, by disabling them through "config" options.
>
> So, far i have used following options in config to get rid of
> compilation errors, is it the right approach? My end goal is to have a
> separate recipe file for Qt5 that is good enough to run webkit.
> Following are the flags that i am using
>
> QT_CONFIG_FLAGS = "-no-avx -no-opengl -no-neon -no-rpath -qconfig full
> -release -opensource -confirm-license -no-pch \
>
> -nomake examples -nomake demos -no-sse2 -no-ssse3 \
>
> -nomake tests -no-gtkstyle -nomake translations \
>
> -qt-zlib -qt-libpng -qt-libjpeg -qt-sql-sqlite"
>
> and my
>
> Build Configuration:
> BB_VERSION = "1.15.2"
> TARGET_ARCH = "i586"
> TARGET_OS = "linux"
> MACHINE = "qemux86"
> DISTRO = "webos"
> DISTRO_VERSION = "1.0"
> TUNE_FEATURES = "m32 i586"
> TARGET_FPU = ""
> meta = "(nobranch):1b40dac2c501ae8c8d812cf2866fe7917f144a19"
> meta-oe = "(nobranch):31bb03eba7c2e928cbc069eea61a5ae2a8d9fe51"
> meta-webos =
> "qt5-recipes-qt5:f7df573d4af74b77d8747c9e84c7e8fd2fb70156"
>
>
> Please suggest how can i be sure that this approach is fine, and wont
> hurt me after building webkit to run with Qt5.
>
> -Sravan.
>
>
> _______________________________________________
> Openembedded-core mailing listOpenembedded-core@lists.openembedded.orghttp://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
[-- Attachment #2: Type: text/html, Size: 4718 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-08-24 19:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-23 17:59 Tackling compilation errors in qt5 recipe Sravan
2012-08-24 5:48 ` Martin Ertsås
2012-08-24 18:49 ` Sravan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox