diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-05 16:03:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-06 15:27:33 +0000 |
commit | a8fb4290323a60bbd92707943c7839b973da2baf (patch) | |
tree | cdb9c981098c004157f7e3760a80d6a9d2e79ea4 | |
parent | 401c632508d7e6700d1a68b6bfa9eda349cc720e (diff) | |
download | poky-a8fb4290323a60bbd92707943c7839b973da2baf.tar.gz |
uclibc: disable parallel builds
There appears to be a parallel make race in uclibc:
GEN /extra/locale/locale_collate.h
xargs: ../..//extra/locale/gen_collate: Text file busy
make[1]: *** [../..//extra/locale/locale_collate.h] Error 126
As uclibc is slated to be removed in the 2.1 cycle let's just disable parallel
building for now.
(From OE-Core rev: 6bb6fd592ca9caac75504b8c339e20ab54c0cae9)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/uclibc/uclibc.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-core/uclibc/uclibc.inc b/meta/recipes-core/uclibc/uclibc.inc index ff7d7448f4..2b34c34e0d 100644 --- a/meta/recipes-core/uclibc/uclibc.inc +++ b/meta/recipes-core/uclibc/uclibc.inc | |||
@@ -39,6 +39,12 @@ COMPATIBLE_HOST = ".*-uclibc.*" | |||
39 | 39 | ||
40 | INHIBIT_DEFAULT_DEPS = "1" | 40 | INHIBIT_DEFAULT_DEPS = "1" |
41 | 41 | ||
42 | # There appears to be a parallel race in uclibc: | ||
43 | # GEN /extra/locale/locale_collate.h | ||
44 | # xargs: ../..//extra/locale/gen_collate: Text file busy | ||
45 | # make[1]: *** [../..//extra/locale/locale_collate.h] Error 126 | ||
46 | PARALLEL_MAKE = "" | ||
47 | |||
42 | # do_stage barfs on a CC with whitespace, therefore put the 'HOST_CC_ARCH' in | 48 | # do_stage barfs on a CC with whitespace, therefore put the 'HOST_CC_ARCH' in |
43 | # the CFLAGS (when building the utils). | 49 | # the CFLAGS (when building the utils). |
44 | OEMAKE_NO_CC = "'STRIPTOOL=true' 'LD=${LD}'" | 50 | OEMAKE_NO_CC = "'STRIPTOOL=true' 'LD=${LD}'" |