All of lore.kernel.org
 help / color / mirror / Atom feed
* SIP recipe can't find Qt4 package in x86 build
@ 2009-03-13 19:11 Rodney Lott
  2009-03-13 19:38 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Rodney Lott @ 2009-03-13 19:11 UTC (permalink / raw)
  To: OE-Development Mailing List (E-mail)

Hello.

I am new to OE and I couldn't find anything in the devel mailing list archives for Feb and March, so I wanted to ask about the following issue.

I am configured as follows:

OE Build Configuration:
BB_VERSION        = "1.8.13"
METADATA_BRANCH   = "<unknown>"
METADATA_REVISION = "<unknown>"
TARGET_ARCH       = "i486"
TARGET_OS         = "linux"
MACHINE           = "x86"
DISTRO            = "minimal"
DISTRO_VERSION    = ".dev-snapshot-20090313"
TARGET_FPU        = ""

I am using the following git revision:

commit 12b093a681c4e011062538e4f2c582630997855f
Author: Bernhard Guillon <Bernhard.Guillon@opensimpad.org>
Date:   Sun Feb 8 16:42:47 2009 +0100

I am not using the latest because this was what I started with and I don't want to pull the latest yet unless it is necessary.

Here's the problem I am having.  I have an image recipe that basically contains the following:

require packages/images/minimal-image.bb

IMAGE_INSTALL += "cron"
IMAGE_INSTALL += "ntp"

export IMAGE_BASENAME = "cp2210e"

If I build with this, everything is peachy and I get my minimalist image with ntp and cron installed.  I then add more IMAGE_INSTALL lines after the ntp line:

IMAGE_INSTALL += "python"
IMAGE_INSTALL += "python-twisted"
IMAGE_INSTALL += "python-pyqt"

The build goes on fine for a while and it stops at this:

NOTE: Running task 765 of 1189 (ID: 532, /home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb, do_configure)
NOTE: package sip-native-4.7.7: started
NOTE: package sip-native-4.7.7-ml0: task do_configure: started
ERROR: function do_configure failed
ERROR: log data follows (/home/rlott/src/oe.cp2210e/tmp/work/i686-linux/sip-native-4.7.7-ml0/temp/log.do_configure.30876)
| NOTE: using qmake spec in /home/rlott/src/oe.cp2210e/tmp/cross/i686/share/qt4/mkspecs/linux-oe-g++, using profiles ''
| NOTE: qmake postvar substitution:  DESTDIR=/home/rlott/src/oe.cp2210e/tmp/work/i686-linux/sip-native-4.7.7-ml0/sip-4.7.7/sipgen CONFIG=console
| Failure to read QMAKESPEC conf file /home/rlott/src/oe.cp2210e/tmp/cross/i686/share/qt4/mkspecs/linux-oe-g++/qmake.conf.
| Error processing project file: sipgen.pro
| FATAL: Error calling /home/rlott/src/oe.cp2210e/tmp/staging/i686-linux/usr/bin/qmake2 on sipgen.pro
NOTE: Task failed: /home/rlott/src/oe.cp2210e/tmp/work/i686-linux/sip-native-4.7.7-ml0/temp/log.do_configure.30876
NOTE: package sip-native-4.7.7-ml0: task do_configure: failed
ERROR: TaskFailed event exception, aborting
NOTE: package sip-native-4.7.7: failed
ERROR: Build of /home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb do_configure failed
ERROR: Task 532 (/home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb, do_configure) failed
NOTE: Tasks Summary: Attempted 764 tasks of which 309 didn't need to be rerun and 1 failed.
ERROR: '/home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb' failed
NOTE: build 200903121439: completed

The qmake spec file is located in /home/rlott/src/oe.cp2210e/tmp/cross/i486/share/qt4/mkspecs/linux-oe-g++/qmake.conf, not the i686 version of this.  So, it appears that either qt4-x11-free is not putting its stuff in the properly staging location or that sip-native isn't resolving the correct version of Qt4 to use.  

So, my question is how do I in my local.conf (or somewhere in my local collection space) tell it to use i486 or i686 and thus have the paths consistent?

Thanks.

Rodney Lott




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: SIP recipe can't find Qt4 package in x86 build
  2009-03-13 19:11 SIP recipe can't find Qt4 package in x86 build Rodney Lott
@ 2009-03-13 19:38 ` Khem Raj
  2009-03-13 20:05   ` Rodney Lott
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2009-03-13 19:38 UTC (permalink / raw)
  To: openembedded-devel

On Fri, Mar 13, 2009 at 12:11 PM, Rodney Lott <rlott@evertz.com> wrote:
> Hello.
>
> I am new to OE and I couldn't find anything in the devel mailing list archives for Feb and March, so I wanted to ask about the following issue.
>
> I am configured as follows:
>
> OE Build Configuration:
> BB_VERSION        = "1.8.13"
> METADATA_BRANCH   = "<unknown>"
> METADATA_REVISION = "<unknown>"
> TARGET_ARCH       = "i486"
> TARGET_OS         = "linux"
> MACHINE           = "x86"
> DISTRO            = "minimal"
> DISTRO_VERSION    = ".dev-snapshot-20090313"
> TARGET_FPU        = ""
>
> I am using the following git revision:
>
> commit 12b093a681c4e011062538e4f2c582630997855f
> Author: Bernhard Guillon <Bernhard.Guillon@opensimpad.org>
> Date:   Sun Feb 8 16:42:47 2009 +0100
>
> I am not using the latest because this was what I started with and I don't want to pull the latest yet unless it is necessary.
>
> Here's the problem I am having.  I have an image recipe that basically contains the following:
>
> require packages/images/minimal-image.bb
>
> IMAGE_INSTALL += "cron"
> IMAGE_INSTALL += "ntp"
>
> export IMAGE_BASENAME = "cp2210e"
>
> If I build with this, everything is peachy and I get my minimalist image with ntp and cron installed.  I then add more IMAGE_INSTALL lines after the ntp line:
>
> IMAGE_INSTALL += "python"
> IMAGE_INSTALL += "python-twisted"
> IMAGE_INSTALL += "python-pyqt"
>
> The build goes on fine for a while and it stops at this:
>
> NOTE: Running task 765 of 1189 (ID: 532, /home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb, do_configure)


You are building sip-native recipe so looking into host tool staging
is right here. So this file should either come from your host
installation of qt-devel  or from qt-native package(if there exists
one) which ever provides it. You might want to make  sip-native
DEPENDS on this package.

Thx

-Khem



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: SIP recipe can't find Qt4 package in x86 build
  2009-03-13 19:38 ` Khem Raj
@ 2009-03-13 20:05   ` Rodney Lott
  0 siblings, 0 replies; 3+ messages in thread
From: Rodney Lott @ 2009-03-13 20:05 UTC (permalink / raw)
  To: openembedded-devel

Hi, Khem.

Thanks for replying so quickly.

So, if I am understanding you correctly, I would have to make a recipe that basically pointed to my natively installed version of Qt?  I couldn't find any qt-native or qt-devel recipes in the packages directory of the git OE repository (probably because Qt is a commercial product).

Okay, I'll give that a try then.

Thanks.

Rodney

-----Original Message-----
From: openembedded-devel-bounces@lists.openembedded.org
[mailto:openembedded-devel-bounces@lists.openembedded.org]On Behalf Of
Khem Raj
Sent: Friday, March 13, 2009 3:39 PM
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] SIP recipe can't find Qt4 package in x86 build


On Fri, Mar 13, 2009 at 12:11 PM, Rodney Lott <rlott@evertz.com> wrote:
> Hello.
>
> I am new to OE and I couldn't find anything in the devel mailing list archives for Feb and March, so I wanted to ask about the following issue.
>
> I am configured as follows:
>
> OE Build Configuration:
> BB_VERSION        = "1.8.13"
> METADATA_BRANCH   = "<unknown>"
> METADATA_REVISION = "<unknown>"
> TARGET_ARCH       = "i486"
> TARGET_OS         = "linux"
> MACHINE           = "x86"
> DISTRO            = "minimal"
> DISTRO_VERSION    = ".dev-snapshot-20090313"
> TARGET_FPU        = ""
>
> I am using the following git revision:
>
> commit 12b093a681c4e011062538e4f2c582630997855f
> Author: Bernhard Guillon <Bernhard.Guillon@opensimpad.org>
> Date:   Sun Feb 8 16:42:47 2009 +0100
>
> I am not using the latest because this was what I started with and I don't want to pull the latest yet unless it is necessary.
>
> Here's the problem I am having.  I have an image recipe that basically contains the following:
>
> require packages/images/minimal-image.bb
>
> IMAGE_INSTALL += "cron"
> IMAGE_INSTALL += "ntp"
>
> export IMAGE_BASENAME = "cp2210e"
>
> If I build with this, everything is peachy and I get my minimalist image with ntp and cron installed.  I then add more IMAGE_INSTALL lines after the ntp line:
>
> IMAGE_INSTALL += "python"
> IMAGE_INSTALL += "python-twisted"
> IMAGE_INSTALL += "python-pyqt"
>
> The build goes on fine for a while and it stops at this:
>
> NOTE: Running task 765 of 1189 (ID: 532, /home/rlott/openembedded.git/packages/sip/sip-native_4.7.7.bb, do_configure)


You are building sip-native recipe so looking into host tool staging
is right here. So this file should either come from your host
installation of qt-devel  or from qt-native package(if there exists
one) which ever provides it. You might want to make  sip-native
DEPENDS on this package.

Thx

-Khem

_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-03-13 20:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-13 19:11 SIP recipe can't find Qt4 package in x86 build Rodney Lott
2009-03-13 19:38 ` Khem Raj
2009-03-13 20:05   ` Rodney Lott

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.