All of lore.kernel.org
 help / color / mirror / Atom feed
* meta-toolchain doesn't build due to gdb-cross-sdk
@ 2010-05-07  9:30 Koen Kooi
  2010-05-08 14:48 ` Thomas Jourdan
  0 siblings, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2010-05-07  9:30 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,

Currently meta-toolchain is unbuildable:

Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['task-sdk-host',
'gdb-cross-sdk']
ERROR: Required build target 'meta-toolchain' has no buildable providers.
Missing or unbuildable dependency chain was: ['meta-toolchain',
'task-sdk-host', 'gdb-cross-sdk']
Command execution failed: Traceback (most recent call last):
  File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
    commandmethod(self.cmds_async, self, options)
  File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
    command.cooker.buildTargets(pkgs_to_build, task)
  File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
    taskdata.add_unresolved(localdata, self.status)
  File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
    self.remove_runtarget(self.getrun_id(target))
  File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
    self.fail_fnid(fnid, missing_list)
  File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
    self.remove_runtarget(target, missing_list)
  File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
    self.fail_fnid(fnid, missing_list)
  File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
    self.remove_buildtarget(target, missing_list)
  File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
    raise bb.providers.NoProvider
NoProvider

The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?


regards,

Koen
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFL493HMkyGM64RGpERAsfeAJ4+dAGLxl374iYexNPvF7aOl1L9jwCdEvTu
mKxwdYeXXCsZzQ0H8yocaBw=
=uhtx
-----END PGP SIGNATURE-----




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

* Re: meta-toolchain doesn't build due to gdb-cross-sdk
  2010-05-07  9:30 meta-toolchain doesn't build due to gdb-cross-sdk Koen Kooi
@ 2010-05-08 14:48 ` Thomas Jourdan
  2010-05-08 17:25   ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Jourdan @ 2010-05-08 14:48 UTC (permalink / raw)
  To: openembedded-devel

Hi

The problems seems to come from the conversion to new staging mode in
GDB. Now, gdb-cross-sdk inherits from sdk and cross whereas before it
only inherited from cross.

Reverting Khem Raj GDB patches fixes the build for me (meta-toolchain
works again).

Regards,
Thomas

Le vendredi 07 mai 2010 à 11:30 +0200, Koen Kooi a écrit :
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hi,
> 
> Currently meta-toolchain is unbuildable:
> 
> Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
> NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['task-sdk-host',
> 'gdb-cross-sdk']
> ERROR: Required build target 'meta-toolchain' has no buildable providers.
> Missing or unbuildable dependency chain was: ['meta-toolchain',
> 'task-sdk-host', 'gdb-cross-sdk']
> Command execution failed: Traceback (most recent call last):
>   File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
>     commandmethod(self.cmds_async, self, options)
>   File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
>     command.cooker.buildTargets(pkgs_to_build, task)
>   File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
>     taskdata.add_unresolved(localdata, self.status)
>   File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
>     self.remove_runtarget(self.getrun_id(target))
>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>     self.fail_fnid(fnid, missing_list)
>   File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
>     self.remove_runtarget(target, missing_list)
>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>     self.fail_fnid(fnid, missing_list)
>   File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
>     self.remove_buildtarget(target, missing_list)
>   File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
>     raise bb.providers.NoProvider
> NoProvider
> 
> The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?
> 
> 
> regards,
> 
> Koen
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> 
> iD8DBQFL493HMkyGM64RGpERAsfeAJ4+dAGLxl374iYexNPvF7aOl1L9jwCdEvTu
> mKxwdYeXXCsZzQ0H8yocaBw=
> =uhtx
> -----END PGP SIGNATURE-----
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 





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

* Re: meta-toolchain doesn't build due to gdb-cross-sdk
  2010-05-08 14:48 ` Thomas Jourdan
@ 2010-05-08 17:25   ` Khem Raj
  2010-05-11 13:39     ` Angus Lees
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2010-05-08 17:25 UTC (permalink / raw)
  To: openembedded-devel

On Sat, May 8, 2010 at 7:48 AM, Thomas Jourdan <thomas.jourdan@yaeld.fr> wrote:
> Hi
>
> The problems seems to come from the conversion to new staging mode in
> GDB.

right

Now, gdb-cross-sdk inherits from sdk and cross whereas before it
> only inherited from cross.
>
> Reverting Khem Raj GDB patches fixes the build for me (meta-toolchain
> works again).

thats because gdb 7.1 is then not using new staging and hence it builds again.

>
> Regards,
> Thomas
>
> Le vendredi 07 mai 2010 à 11:30 +0200, Koen Kooi a écrit :
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> Hi,
>>
>> Currently meta-toolchain is unbuildable:
>>
>> Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
>> NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
>> Missing or unbuildable dependency chain was: ['task-sdk-host',
>> 'gdb-cross-sdk']
>> ERROR: Required build target 'meta-toolchain' has no buildable providers.
>> Missing or unbuildable dependency chain was: ['meta-toolchain',
>> 'task-sdk-host', 'gdb-cross-sdk']
>> Command execution failed: Traceback (most recent call last):
>>   File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
>>     commandmethod(self.cmds_async, self, options)
>>   File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
>>     command.cooker.buildTargets(pkgs_to_build, task)
>>   File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
>>     taskdata.add_unresolved(localdata, self.status)
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
>>     self.remove_runtarget(self.getrun_id(target))
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>>     self.fail_fnid(fnid, missing_list)
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
>>     self.remove_runtarget(target, missing_list)
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>>     self.fail_fnid(fnid, missing_list)
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
>>     self.remove_buildtarget(target, missing_list)
>>   File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
>>     raise bb.providers.NoProvider
>> NoProvider
>>
>> The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?
>>
>>
>> regards,
>>
>> Koen
>> -----BEGIN PGP SIGNATURE-----
>> Version: GnuPG v1.4.5 (Darwin)
>>
>> iD8DBQFL493HMkyGM64RGpERAsfeAJ4+dAGLxl374iYexNPvF7aOl1L9jwCdEvTu
>> mKxwdYeXXCsZzQ0H8yocaBw=
>> =uhtx
>> -----END PGP SIGNATURE-----
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: meta-toolchain doesn't build due to gdb-cross-sdk
  2010-05-08 17:25   ` Khem Raj
@ 2010-05-11 13:39     ` Angus Lees
  2010-05-13  8:31       ` Antonio Ospite
  0 siblings, 1 reply; 6+ messages in thread
From: Angus Lees @ 2010-05-11 13:39 UTC (permalink / raw)
  To: openembedded-devel

It looks like the do_stage() removal was good, but the "inherit cross"
refactor broke task-sdk-host and all the SDKs that depend on it.  I suggest
reverting most of 4cf6a6bf83ccb13e7238927d72e77c4612fe6543 (but I'm hardly
an expert).

 - Gus

On Sun, May 9, 2010 at 03:25, Khem Raj <raj.khem@gmail.com> wrote:

> On Sat, May 8, 2010 at 7:48 AM, Thomas Jourdan <thomas.jourdan@yaeld.fr>
> wrote:
> > Hi
> >
> > The problems seems to come from the conversion to new staging mode in
> > GDB.
>
> right
>
> Now, gdb-cross-sdk inherits from sdk and cross whereas before it
> > only inherited from cross.
> >
> > Reverting Khem Raj GDB patches fixes the build for me (meta-toolchain
> > works again).
>
> thats because gdb 7.1 is then not using new staging and hence it builds
> again.
>
> >
> > Regards,
> > Thomas
> >
> > Le vendredi 07 mai 2010 à 11:30 +0200, Koen Kooi a écrit :
> >> -----BEGIN PGP SIGNED MESSAGE-----
> >> Hash: SHA1
> >>
> >> Hi,
> >>
> >> Currently meta-toolchain is unbuildable:
> >>
> >> Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
> >> NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
> >> Missing or unbuildable dependency chain was: ['task-sdk-host',
> >> 'gdb-cross-sdk']
> >> ERROR: Required build target 'meta-toolchain' has no buildable
> providers.
> >> Missing or unbuildable dependency chain was: ['meta-toolchain',
> >> 'task-sdk-host', 'gdb-cross-sdk']
> >> Command execution failed: Traceback (most recent call last):
> >>   File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
> >>     commandmethod(self.cmds_async, self, options)
> >>   File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
> >>     command.cooker.buildTargets(pkgs_to_build, task)
> >>   File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
> >>     taskdata.add_unresolved(localdata, self.status)
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
> >>     self.remove_runtarget(self.getrun_id(target))
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
> >>     self.fail_fnid(fnid, missing_list)
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
> >>     self.remove_runtarget(target, missing_list)
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
> >>     self.fail_fnid(fnid, missing_list)
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
> >>     self.remove_buildtarget(target, missing_list)
> >>   File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
> >>     raise bb.providers.NoProvider
> >> NoProvider
> >>
> >> The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?
> >>
> >>
> >> regards,
> >>
> >> Koen
> >> -----BEGIN PGP SIGNATURE-----
> >> Version: GnuPG v1.4.5 (Darwin)
> >>
> >> iD8DBQFL493HMkyGM64RGpERAsfeAJ4+dAGLxl374iYexNPvF7aOl1L9jwCdEvTu
> >> mKxwdYeXXCsZzQ0H8yocaBw=
> >> =uhtx
> >> -----END PGP SIGNATURE-----
> >>
> >>
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> >>
> >
> >
> >
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> >
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>


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

* Re: meta-toolchain doesn't build due to gdb-cross-sdk
  2010-05-11 13:39     ` Angus Lees
@ 2010-05-13  8:31       ` Antonio Ospite
  2010-05-14  9:53         ` Koen Kooi
  0 siblings, 1 reply; 6+ messages in thread
From: Antonio Ospite @ 2010-05-13  8:31 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3477 bytes --]

On Tue, 11 May 2010 23:39:29 +1000
Angus Lees <alees@google.com> wrote:

> It looks like the do_stage() removal was good, but the "inherit cross"
> refactor broke task-sdk-host and all the SDKs that depend on it.  I suggest
> reverting most of 4cf6a6bf83ccb13e7238927d72e77c4612fe6543 (but I'm hardly
> an expert).
> 
>  - Gus
>

Ping.

meta-toolchain still does not build in org.oe.dev, but Angus' workaround
worked for me too, thanks.

Regards,
   Antonio

> On Sun, May 9, 2010 at 03:25, Khem Raj <raj.khem@gmail.com> wrote:
> 
> > On Sat, May 8, 2010 at 7:48 AM, Thomas Jourdan <thomas.jourdan@yaeld.fr>
> > wrote:
> > > Hi
> > >
> > > The problems seems to come from the conversion to new staging mode in
> > > GDB.
> >
> > right
> >
> > Now, gdb-cross-sdk inherits from sdk and cross whereas before it
> > > only inherited from cross.
> > >
> > > Reverting Khem Raj GDB patches fixes the build for me (meta-toolchain
> > > works again).
> >
> > thats because gdb 7.1 is then not using new staging and hence it builds
> > again.
> >
> > >
> > > Regards,
> > > Thomas
> > >
> > > Le vendredi 07 mai 2010 à 11:30 +0200, Koen Kooi a écrit :
> > >> -----BEGIN PGP SIGNED MESSAGE-----
> > >> Hash: SHA1
> > >>
> > >> Hi,
> > >>
> > >> Currently meta-toolchain is unbuildable:
> > >>
> > >> Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
> > >> NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
> > >> Missing or unbuildable dependency chain was: ['task-sdk-host',
> > >> 'gdb-cross-sdk']
> > >> ERROR: Required build target 'meta-toolchain' has no buildable
> > providers.
> > >> Missing or unbuildable dependency chain was: ['meta-toolchain',
> > >> 'task-sdk-host', 'gdb-cross-sdk']
> > >> Command execution failed: Traceback (most recent call last):
> > >>   File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
> > >>     commandmethod(self.cmds_async, self, options)
> > >>   File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
> > >>     command.cooker.buildTargets(pkgs_to_build, task)
> > >>   File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
> > >>     taskdata.add_unresolved(localdata, self.status)
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
> > >>     self.remove_runtarget(self.getrun_id(target))
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
> > >>     self.fail_fnid(fnid, missing_list)
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
> > >>     self.remove_runtarget(target, missing_list)
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
> > >>     self.fail_fnid(fnid, missing_list)
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
> > >>     self.remove_buildtarget(target, missing_list)
> > >>   File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
> > >>     raise bb.providers.NoProvider
> > >> NoProvider
> > >>
> > >> The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?
> > >>
> > >>
> > >> regards,
> > >>
> > >> Koen


-- 
Antonio Ospite
http://ao2.it

PGP public key ID: 0x4553B001

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

[-- Attachment #2: Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: meta-toolchain doesn't build due to gdb-cross-sdk
  2010-05-13  8:31       ` Antonio Ospite
@ 2010-05-14  9:53         ` Koen Kooi
  0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2010-05-14  9:53 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Another ping :)

On 13-05-10 10:31, Antonio Ospite wrote:
> On Tue, 11 May 2010 23:39:29 +1000
> Angus Lees <alees@google.com> wrote:
> 
>> It looks like the do_stage() removal was good, but the "inherit cross"
>> refactor broke task-sdk-host and all the SDKs that depend on it.  I suggest
>> reverting most of 4cf6a6bf83ccb13e7238927d72e77c4612fe6543 (but I'm hardly
>> an expert).
>>
>>  - Gus
>>
> 
> Ping.
> 
> meta-toolchain still does not build in org.oe.dev, but Angus' workaround
> worked for me too, thanks.
> 
> Regards,
>    Antonio
> 
>> On Sun, May 9, 2010 at 03:25, Khem Raj <raj.khem@gmail.com> wrote:
>>
>>> On Sat, May 8, 2010 at 7:48 AM, Thomas Jourdan <thomas.jourdan@yaeld.fr>
>>> wrote:
>>>> Hi
>>>>
>>>> The problems seems to come from the conversion to new staging mode in
>>>> GDB.
>>>
>>> right
>>>
>>> Now, gdb-cross-sdk inherits from sdk and cross whereas before it
>>>> only inherited from cross.
>>>>
>>>> Reverting Khem Raj GDB patches fixes the build for me (meta-toolchain
>>>> works again).
>>>
>>> thats because gdb 7.1 is then not using new staging and hence it builds
>>> again.
>>>
>>>>
>>>> Regards,
>>>> Thomas
>>>>
>>>> Le vendredi 07 mai 2010 à 11:30 +0200, Koen Kooi a écrit :
>>>>> -----BEGIN PGP SIGNED MESSAGE-----
>>>>> Hash: SHA1
>>>>>
>>>>> Hi,
>>>>>
>>>>> Currently meta-toolchain is unbuildable:
>>>>>
>>>>> Missing or unbuildable dependency chain was: ['gdb-cross-sdk']
>>>>> NOTE: Runtime target 'task-sdk-host' is unbuildable, removing...
>>>>> Missing or unbuildable dependency chain was: ['task-sdk-host',
>>>>> 'gdb-cross-sdk']
>>>>> ERROR: Required build target 'meta-toolchain' has no buildable
>>> providers.
>>>>> Missing or unbuildable dependency chain was: ['meta-toolchain',
>>>>> 'task-sdk-host', 'gdb-cross-sdk']
>>>>> Command execution failed: Traceback (most recent call last):
>>>>>   File "/OE/bitbake/lib/bb/command.py", line 88, in runAsyncCommand
>>>>>     commandmethod(self.cmds_async, self, options)
>>>>>   File "/OE/bitbake/lib/bb/command.py", line 174, in buildTargets
>>>>>     command.cooker.buildTargets(pkgs_to_build, task)
>>>>>   File "/OE/bitbake/lib/bb/cooker.py", line 757, in buildTargets
>>>>>     taskdata.add_unresolved(localdata, self.status)
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 562, in add_unresolved
>>>>>     self.remove_runtarget(self.getrun_id(target))
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>>>>>     self.fail_fnid(fnid, missing_list)
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 495, in fail_fnid
>>>>>     self.remove_runtarget(target, missing_list)
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 535, in remove_runtarget
>>>>>     self.fail_fnid(fnid, missing_list)
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 490, in fail_fnid
>>>>>     self.remove_buildtarget(target, missing_list)
>>>>>   File "/OE/bitbake/lib/bb/taskdata.py", line 519, in remove_buildtarget
>>>>>     raise bb.providers.NoProvider
>>>>> NoProvider
>>>>>
>>>>> The weird thing is that 'bitbake gdb-cross-sdk' *DOES* work. Any ideas?
>>>>>
>>>>>
>>>>> regards,
>>>>>
>>>>> Koen
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFL7R2aMkyGM64RGpERAn+nAKCTIwCY+L56utAGCSdmSLGT4qpNCACgpZq5
SknHmREBe1MPGDNCrxCMH1A=
=vUQQ
-----END PGP SIGNATURE-----




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

end of thread, other threads:[~2010-05-14  9:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-07  9:30 meta-toolchain doesn't build due to gdb-cross-sdk Koen Kooi
2010-05-08 14:48 ` Thomas Jourdan
2010-05-08 17:25   ` Khem Raj
2010-05-11 13:39     ` Angus Lees
2010-05-13  8:31       ` Antonio Ospite
2010-05-14  9:53         ` 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.