* [PATCH] glibc_2.9: disable parallel make
@ 2009-10-26 14:17 Steffen Sledz
2009-10-26 15:20 ` Stanislav Brabec
2009-10-27 8:23 ` Steffen Sledz
0 siblings, 2 replies; 6+ messages in thread
From: Steffen Sledz @ 2009-10-26 14:17 UTC (permalink / raw)
To: openembedded-devel
Parallel make for glibc_2.9.bb fails on different multi-cpu build hosts
(e.g. AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1)
with various errors. :(
Signed-off-by: Steffen Sledz <sledz@dresearch.de>
---
recipes/glibc/glibc_2.9.bb | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/recipes/glibc/glibc_2.9.bb b/recipes/glibc/glibc_2.9.bb
index cddae98..428af03 100644
--- a/recipes/glibc/glibc_2.9.bb
+++ b/recipes/glibc/glibc_2.9.bb
@@ -75,6 +75,8 @@ SRC_URI_append_sh4 = " file://no-z-defs.patch;patch=1"
#powerpc patches to add support for soft-float
SRC_URI_append_powerpc= " file://powerpc-sqrt-hack.diff;patch=1"
+PARALLEL_MAKE = " "
+
S = "${WORKDIR}/glibc-${PV}"
B = "${WORKDIR}/build-${TARGET_SYS}"
--
1.6.4.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] glibc_2.9: disable parallel make
2009-10-26 14:17 [PATCH] glibc_2.9: disable parallel make Steffen Sledz
@ 2009-10-26 15:20 ` Stanislav Brabec
2009-10-26 15:29 ` Steffen Sledz
2009-10-27 8:23 ` Steffen Sledz
1 sibling, 1 reply; 6+ messages in thread
From: Stanislav Brabec @ 2009-10-26 15:20 UTC (permalink / raw)
To: openembedded-devel
Steffen Sledz wrote:
> Parallel make for glibc_2.9.bb fails on different multi-cpu build hosts
> (e.g. AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1)
> with various errors. :(
It would make bootstrap longer on multi-CPU machines. :-(
I never seen such failure with PARALLEL_MAKE = "-j 8" and
BB_NUMBER_THREADS = "8", 8x Xeon, at least with glibc-2.9-r35.2 and not
before 4249269b.
Does it happen in the same directory every time? Is there any common
error or missing library?
--
Stanislav Brabec
http://www.penguin.cz/~utx/zaurus
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] glibc_2.9: disable parallel make
2009-10-26 14:17 [PATCH] glibc_2.9: disable parallel make Steffen Sledz
2009-10-26 15:20 ` Stanislav Brabec
@ 2009-10-27 8:23 ` Steffen Sledz
2009-10-27 19:58 ` Khem Raj
1 sibling, 1 reply; 6+ messages in thread
From: Steffen Sledz @ 2009-10-27 8:23 UTC (permalink / raw)
To: openembedded-devel
Steffen Sledz wrote:
> Parallel make for glibc_2.9.bb fails on different multi-cpu build hosts
> (e.g. AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1)
> with various errors. :(
>
> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
> ...
BTW: It is the first time i proposed a patch this way and i expected
to see it in the patchwork queue but it doesn't. :(
Steffen
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] glibc_2.9: disable parallel make
2009-10-27 8:23 ` Steffen Sledz
@ 2009-10-27 19:58 ` Khem Raj
2009-10-28 8:39 ` Steffen Sledz
0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2009-10-27 19:58 UTC (permalink / raw)
To: openembedded-devel
On Tue, Oct 27, 2009 at 1:23 AM, Steffen Sledz <sledz@dresearch.de> wrote:
> Steffen Sledz wrote:
>> Parallel make for glibc_2.9.bb fails on different multi-cpu build hosts
>> (e.g. AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1)
>> with various errors. :(
I would suggest to refrain from applying this patch as it affects
people who do not suffer from this problem
and compile time for glibc is quite huge that everyone will feel the
pinch. I would still urge to
debug the real problem and fix it. May be there is something wrong
with the OS on the box or even in the
parallel build mechanism of glibc. Or if there is a way to say 'only
disable parallel build when build machine is
"AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1" would
be ok too.
Thanks
-Khem
>>
>> Signed-off-by: Steffen Sledz <sledz@dresearch.de>
>> ...
>
> BTW: It is the first time i proposed a patch this way and i expected
> to see it in the patchwork queue but it doesn't. :(
>
> Steffen
>
>
>
> _______________________________________________
> 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: [PATCH] glibc_2.9: disable parallel make
2009-10-27 19:58 ` Khem Raj
@ 2009-10-28 8:39 ` Steffen Sledz
0 siblings, 0 replies; 6+ messages in thread
From: Steffen Sledz @ 2009-10-28 8:39 UTC (permalink / raw)
To: openembedded-devel
Khem Raj wrote:
>>> Parallel make for glibc_2.9.bb fails on different multi-cpu build hosts
>>> (e.g. AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1)
>>> with various errors. :(
>
> I would suggest to refrain from applying this patch as it affects
> people who do not suffer from this problem
> and compile time for glibc is quite huge that everyone will feel the
> pinch. I would still urge to
> debug the real problem and fix it. May be there is something wrong
> with the OS on the box or even in the
> parallel build mechanism of glibc. Or if there is a way to say 'only
> disable parallel build when build machine is
> "AMD Phenom(tm) 9150e Quad-Core Processor running openSUSE 11.1" would
> be ok too.
I agree. As long as nobody else has this problem i'll not push this patch.
>> BTW: It is the first time i proposed a patch this way and i expected
>> to see it in the patchwork queue but it doesn't. :(
Any idea why this ptach suggestion is not visible in the patchwork queue?
Steffen
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-10-28 8:41 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-26 14:17 [PATCH] glibc_2.9: disable parallel make Steffen Sledz
2009-10-26 15:20 ` Stanislav Brabec
2009-10-26 15:29 ` Steffen Sledz
2009-10-27 8:23 ` Steffen Sledz
2009-10-27 19:58 ` Khem Raj
2009-10-28 8:39 ` Steffen Sledz
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.