Openembedded Core Discussions
 help / color / mirror / Atom feed
* Why qemu-config RDPENDS on distcc ?
@ 2012-03-20  8:42 Robert Yang
  2012-03-20  9:43 ` Paul Eggleton
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Yang @ 2012-03-20  8:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Hi all,

I'm just curious that qemu-config RDPENDS on distcc:

meta/recipes-bsp/qemu-config/qemu-config.bb:RDEPENDS_${PN} = "distcc ..."

And there are 4 processes named "distcc" running after boot the target
with "runqemu qemux86".

We have distcc on the target, but no gcc or g++, can we remove it from
qemu-config's RDEPENDS?

-- 
Thanks

Robert



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

* Re: Why qemu-config RDPENDS on distcc ?
  2012-03-20  8:42 Why qemu-config RDPENDS on distcc ? Robert Yang
@ 2012-03-20  9:43 ` Paul Eggleton
  2012-03-20 12:05   ` Robert Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Eggleton @ 2012-03-20  9:43 UTC (permalink / raw)
  To: Robert Yang; +Cc: openembedded-core

On Tuesday 20 March 2012 16:42:41 Robert Yang wrote:
> I'm just curious that qemu-config RDPENDS on distcc:
> 
> meta/recipes-bsp/qemu-config/qemu-config.bb:RDEPENDS_${PN} = "distcc ..."
> 
> And there are 4 processes named "distcc" running after boot the target
> with "runqemu qemux86".
> 
> We have distcc on the target, but no gcc or g++, can we remove it from
> qemu-config's RDEPENDS?

I think the idea was that if you wanted to do compilation on the emulated 
target, having distcc would let you do it with much better performance. I  
agree it seems that it's not particularly useful if you're never going to do 
any compilation on the target though.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



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

* Re: Why qemu-config RDPENDS on distcc ?
  2012-03-20  9:43 ` Paul Eggleton
@ 2012-03-20 12:05   ` Robert Yang
  2012-03-20 12:19     ` Koen Kooi
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Yang @ 2012-03-20 12:05 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-core


On 03/20/2012 05:43 PM, Paul Eggleton wrote:
> On Tuesday 20 March 2012 16:42:41 Robert Yang wrote:
>> I'm just curious that qemu-config RDPENDS on distcc:
>>
>> meta/recipes-bsp/qemu-config/qemu-config.bb:RDEPENDS_${PN} = "distcc ..."
>>
>> And there are 4 processes named "distcc" running after boot the target
>> with "runqemu qemux86".
>>
>> We have distcc on the target, but no gcc or g++, can we remove it from
>> qemu-config's RDEPENDS?
>
> I think the idea was that if you wanted to do compilation on the emulated
> target, having distcc would let you do it with much better performance. I
> agree it seems that it's not particularly useful if you're never going to do
> any compilation on the target though.
>

Thanks for your reply, so may I send a pull request to remove it from
qemu-config's RDPENDS?

// Robert

> Cheers,
> Paul
>



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

* Re: Why qemu-config RDPENDS on distcc ?
  2012-03-20 12:05   ` Robert Yang
@ 2012-03-20 12:19     ` Koen Kooi
  2012-03-20 12:49       ` Robert Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2012-03-20 12:19 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton


Op 20 mrt. 2012, om 13:05 heeft Robert Yang het volgende geschreven:

> 
> On 03/20/2012 05:43 PM, Paul Eggleton wrote:
>> On Tuesday 20 March 2012 16:42:41 Robert Yang wrote:
>>> I'm just curious that qemu-config RDPENDS on distcc:
>>> 
>>> meta/recipes-bsp/qemu-config/qemu-config.bb:RDEPENDS_${PN} = "distcc ..."
>>> 
>>> And there are 4 processes named "distcc" running after boot the target
>>> with "runqemu qemux86".
>>> 
>>> We have distcc on the target, but no gcc or g++, can we remove it from
>>> qemu-config's RDEPENDS?
>> 
>> I think the idea was that if you wanted to do compilation on the emulated
>> target, having distcc would let you do it with much better performance. I
>> agree it seems that it's not particularly useful if you're never going to do
>> any compilation on the target though.
>> 
> 
> Thanks for your reply, so may I send a pull request to remove it from
> qemu-config's RDPENDS?

I'll argue that qemu-config should be an image choice, not a machine choice :)

regards,

Koen


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

* Re: Why qemu-config RDPENDS on distcc ?
  2012-03-20 12:19     ` Koen Kooi
@ 2012-03-20 12:49       ` Robert Yang
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2012-03-20 12:49 UTC (permalink / raw)
  To: openembedded-core



On 03/20/2012 08:19 PM, Koen Kooi wrote:
>
> Op 20 mrt. 2012, om 13:05 heeft Robert Yang het volgende geschreven:
>
>>
>> On 03/20/2012 05:43 PM, Paul Eggleton wrote:
>>> On Tuesday 20 March 2012 16:42:41 Robert Yang wrote:
>>>> I'm just curious that qemu-config RDPENDS on distcc:
>>>>
>>>> meta/recipes-bsp/qemu-config/qemu-config.bb:RDEPENDS_${PN} = "distcc ..."
>>>>
>>>> And there are 4 processes named "distcc" running after boot the target
>>>> with "runqemu qemux86".
>>>>
>>>> We have distcc on the target, but no gcc or g++, can we remove it from
>>>> qemu-config's RDEPENDS?
>>>
>>> I think the idea was that if you wanted to do compilation on the emulated
>>> target, having distcc would let you do it with much better performance. I
>>> agree it seems that it's not particularly useful if you're never going to do
>>> any compilation on the target though.
>>>
>>
>> Thanks for your reply, so may I send a pull request to remove it from
>> qemu-config's RDPENDS?
>
> I'll argue that qemu-config should be an image choice, not a machine choice :)
>

I'm sorry, but what does the "qemu-config should be an image choice, not a
machine choice" mean, please?

// Robert

> regards,
>
> Koen
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>



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

end of thread, other threads:[~2012-03-20 12:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-20  8:42 Why qemu-config RDPENDS on distcc ? Robert Yang
2012-03-20  9:43 ` Paul Eggleton
2012-03-20 12:05   ` Robert Yang
2012-03-20 12:19     ` Koen Kooi
2012-03-20 12:49       ` Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox