diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-11-20 14:04:16 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-08 20:14:42 +0000 |
commit | 7e27a9c351608388d08f61ae02b7c26335364362 (patch) | |
tree | fec66a87e47fe7c70d2c50b625e2a6d2d6f8d74a /meta | |
parent | f85b49463063ab819fdc0a7120d7d92d50914eb4 (diff) | |
download | poky-7e27a9c351608388d08f61ae02b7c26335364362.tar.gz |
meta/icecc.bbclass: Update system blacklists
Updates the system blacklists to include packages that are known to have
problems compiling under icecream
(From OE-Core rev: fc5418e7bbdecfb27bafe595084e0fd0f991a388)
(From OE-Core rev: be54e1e0e769a9833b9b595e7a820ea9e098b91d)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/icecc.bbclass | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index 9ccd42d784..3f04a1b63a 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass | |||
@@ -68,14 +68,22 @@ ICECC_ENV_DEBUG ??= "" | |||
68 | # | 68 | # |
69 | # libgcc-initial - fails with CPP sanity check error if host sysroot contains | 69 | # libgcc-initial - fails with CPP sanity check error if host sysroot contains |
70 | # cross gcc built for another target tune/variant | 70 | # cross gcc built for another target tune/variant |
71 | # target-sdk-provides-dummy - ${HOST_PREFIX} is empty which triggers the "NULL | ||
72 | # prefix" error. | ||
71 | ICECC_SYSTEM_PACKAGE_BL += "\ | 73 | ICECC_SYSTEM_PACKAGE_BL += "\ |
72 | libgcc-initial \ | 74 | libgcc-initial \ |
75 | target-sdk-provides-dummy \ | ||
73 | " | 76 | " |
74 | 77 | ||
75 | # "system" classes that should be blacklisted. When adding new entry, please | 78 | # "system" classes that should be blacklisted. When adding new entry, please |
76 | # document why (how it failed) so that we can re-evaluate it later | 79 | # document why (how it failed) so that we can re-evaluate it later |
77 | # | 80 | # |
81 | # image - Image aren't compiling, but the testing framework for images captures | ||
82 | # PARALLEL_MAKE as part of the test environment. Many tests won't use | ||
83 | # icecream, but leaving the high level of parallelism can cause them to | ||
84 | # consume an unnecessary amount of resources. | ||
78 | ICECC_SYSTEM_CLASS_BL += "\ | 85 | ICECC_SYSTEM_CLASS_BL += "\ |
86 | image \ | ||
79 | " | 87 | " |
80 | 88 | ||
81 | def icecc_dep_prepend(d): | 89 | def icecc_dep_prepend(d): |