* eggdbus build failure in master
@ 2011-06-20 20:20 Darren Hart
2011-06-20 22:51 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: Darren Hart @ 2011-06-20 20:20 UTC (permalink / raw)
To: poky@yoctoproject.org
I'm seeing a consistent eggdbus build failure that seems to be related
to the perl-native relocation. I've cleanall'd autoconf and automake,
native and target versions. The failure persists.
Anyone have any ideas on how to get this building? I'll start a clean
build in another directory for now.
OE Build Configuration:
BB_VERSION = "1.13.1"
METADATA_BRANCH = "master"
METADATA_REVISION = "ac06a5faa456b1e5b8db52911d3dc6cb9bca6e0c"
TARGET_ARCH = "arm"
TARGET_OS = "linux-gnueabi"
MACHINE = "beagleboard"
DISTRO = "poky"
DISTRO_VERSION = "1.0+snapshot-20110620"
TARGET_FPU = "soft"
ERROR: Logfile of failure stored in:
/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/temp/log.do_compile.37035
Log data follows:
| NOTE: make
| make all-recursive
| make[1]: Entering directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6'
| Making all in src
| make[2]: Entering directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6/src'
| Making all in eggdbus
| make[3]: Entering directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6/src/eggdbus'
| glib-genmarshal eggdbusmarshal.list --prefix=eggdbus_marshal --header
> eggdbusmarshal.h
| echo "#include \"eggdbusmarshal.h\"" > eggdbusmarshal.c &&
glib-genmarshal eggdbusmarshal.list --prefix=eggdbus_marshal --body >>
eggdbusmarshal.c
| ( top_builddir=`cd ../.. && pwd`; \
| cd . && glib-mkenums --template eggdbusenumtypes.h.template
eggdbusinterface.h eggdbusconnection.h eggdbuserror.h eggdbusmessage.h
) > \
| eggdbusenumtypes.h.tmp && mv eggdbusenumtypes.h.tmp
eggdbusenumtypes.h
| /bin/sh:
/vol/1/dvhart/poky.git/build-beagleboard/tmp/sysroots/x86_64-linux/usr/bin/glib-mkenums:
/vol/1/dvhart/poky.git/build-beagleboard/tmp/sysroots/x86_64-linux/usr/bin/pe:
bad interpreter: No such file or directory
| make[3]: *** [eggdbusenumtypes.h] Error 126
| make[3]: Leaving directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6/src/eggdbus'
| make[2]: *** [all-recursive] Error 1
| make[2]: Leaving directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6/src'
| make[1]: *** [all-recursive] Error 1
| make[1]: Leaving directory
`/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/eggdbus-0.6'
| make: *** [all] Error 2
| ERROR: oe_runmake failed
| ERROR: Function 'do_compile' failed (see
/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/temp/log.do_compile.37035
for further information)
| ERROR: Function 'do_compile' failed (see
/vol/1/dvhart/poky.git/build-beagleboard/tmp/work/x86_64-linux/eggdbus-native-0.6-r1/temp/log.do_compile.37035
for further information)
NOTE: package eggdbus-native-0.6-r1: task do_compile: Failed
ERROR: Task 3556
(virtual:native:/home/dvhart/data/poky.git/meta/recipes-core/eggdbus/eggdbus_0.6.bb,
do_compile) failed with exit code '1'
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: eggdbus build failure in master
2011-06-20 20:20 eggdbus build failure in master Darren Hart
@ 2011-06-20 22:51 ` Tom Rini
2011-06-20 22:57 ` Khem Raj
2011-06-21 6:35 ` Koen Kooi
0 siblings, 2 replies; 6+ messages in thread
From: Tom Rini @ 2011-06-20 22:51 UTC (permalink / raw)
To: poky
On 06/20/2011 01:20 PM, Darren Hart wrote:
> I'm seeing a consistent eggdbus build failure that seems to be related
> to the perl-native relocation. I've cleanall'd autoconf and automake,
> native and target versions. The failure persists.
>
> Anyone have any ideas on how to get this building? I'll start a clean
> build in another directory for now.
It's a glib problem, you need to switch glib-mkenums to using
/usr/bin/env perl (you're building in too deep a path for #! to work
with the full path to perl-native).
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: eggdbus build failure in master
2011-06-20 22:51 ` Tom Rini
@ 2011-06-20 22:57 ` Khem Raj
2011-06-20 22:59 ` Tom Rini
2011-06-21 6:35 ` Koen Kooi
1 sibling, 1 reply; 6+ messages in thread
From: Khem Raj @ 2011-06-20 22:57 UTC (permalink / raw)
To: Tom Rini; +Cc: poky
On Mon, Jun 20, 2011 at 3:51 PM, Tom Rini <tom_rini@mentor.com> wrote:
> On 06/20/2011 01:20 PM, Darren Hart wrote:
>> I'm seeing a consistent eggdbus build failure that seems to be related
>> to the perl-native relocation. I've cleanall'd autoconf and automake,
>> native and target versions. The failure persists.
>>
>> Anyone have any ideas on how to get this building? I'll start a clean
>> build in another directory for now.
>
> It's a glib problem, you need to switch glib-mkenums to using
> /usr/bin/env perl (you're building in too deep a path for #! to work
> with the full path to perl-native).
>
you mean import from oe
commit c63403cb9c02641476f9e275fb2e63bb54f5e46d
Author: Tom Rini <tom_rini@mentor.com>
Date: Thu Nov 18 06:38:28 2010 -0700
glib-2.0: Fix glib-mkenums to use /usr/bin/env perl
Signed-off-by: Tom Rini <tom_rini@mentor.com>
> --
> Tom Rini
> Mentor Graphics Corporation
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: eggdbus build failure in master
2011-06-20 22:57 ` Khem Raj
@ 2011-06-20 22:59 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2011-06-20 22:59 UTC (permalink / raw)
To: Khem Raj; +Cc: poky
On 06/20/2011 03:57 PM, Khem Raj wrote:
> On Mon, Jun 20, 2011 at 3:51 PM, Tom Rini <tom_rini@mentor.com> wrote:
>> On 06/20/2011 01:20 PM, Darren Hart wrote:
>>> I'm seeing a consistent eggdbus build failure that seems to be related
>>> to the perl-native relocation. I've cleanall'd autoconf and automake,
>>> native and target versions. The failure persists.
>>>
>>> Anyone have any ideas on how to get this building? I'll start a clean
>>> build in another directory for now.
>>
>> It's a glib problem, you need to switch glib-mkenums to using
>> /usr/bin/env perl (you're building in too deep a path for #! to work
>> with the full path to perl-native).
>>
>
> you mean import from oe
>
> commit c63403cb9c02641476f9e275fb2e63bb54f5e46d
> Author: Tom Rini <tom_rini@mentor.com>
> Date: Thu Nov 18 06:38:28 2010 -0700
>
> glib-2.0: Fix glib-mkenums to use /usr/bin/env perl
>
> Signed-off-by: Tom Rini <tom_rini@mentor.com>
Yes, that one and probably a few others where I said '/usr/bin/env perl'
in the git log for fixing deep-path builds. Thanks :)
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [poky] eggdbus build failure in master
2011-06-20 22:51 ` Tom Rini
@ 2011-06-21 6:35 ` Koen Kooi
2011-06-21 6:35 ` Koen Kooi
1 sibling, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2011-06-21 6:35 UTC (permalink / raw)
To: Tom Rini
Cc: poky@yoctoproject.org Project,
Patches and discussions about the oe-core layer
Op 21 jun 2011, om 00:51 heeft Tom Rini het volgende geschreven:
> On 06/20/2011 01:20 PM, Darren Hart wrote:
>> I'm seeing a consistent eggdbus build failure that seems to be related
>> to the perl-native relocation. I've cleanall'd autoconf and automake,
>> native and target versions. The failure persists.
>>
>> Anyone have any ideas on how to get this building? I'll start a clean
>> build in another directory for now.
>
> It's a glib problem, you need to switch glib-mkenums to using
> /usr/bin/env perl (you're building in too deep a path for #! to work
> with the full path to perl-native).
I sent that last week to oe-core :)
Have a look at http://patches.openembedded.org/patch/6137/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: eggdbus build failure in master
@ 2011-06-21 6:35 ` Koen Kooi
0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2011-06-21 6:35 UTC (permalink / raw)
To: Tom Rini
Cc: poky@yoctoproject.org Project,
Patches and discussions about the oe-core layer
Op 21 jun 2011, om 00:51 heeft Tom Rini het volgende geschreven:
> On 06/20/2011 01:20 PM, Darren Hart wrote:
>> I'm seeing a consistent eggdbus build failure that seems to be related
>> to the perl-native relocation. I've cleanall'd autoconf and automake,
>> native and target versions. The failure persists.
>>
>> Anyone have any ideas on how to get this building? I'll start a clean
>> build in another directory for now.
>
> It's a glib problem, you need to switch glib-mkenums to using
> /usr/bin/env perl (you're building in too deep a path for #! to work
> with the full path to perl-native).
I sent that last week to oe-core :)
Have a look at http://patches.openembedded.org/patch/6137/
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-06-21 6:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-20 20:20 eggdbus build failure in master Darren Hart
2011-06-20 22:51 ` Tom Rini
2011-06-20 22:57 ` Khem Raj
2011-06-20 22:59 ` Tom Rini
2011-06-21 6:35 ` [poky] " Koen Kooi
2011-06-21 6:35 ` Koen Kooi
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.