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:12:00 +0000 |
commit | be54e1e0e769a9833b9b595e7a820ea9e098b91d (patch) | |
tree | 8a0d7a11c85e8b1ef2edc28d278eb90fe777b3ab /meta | |
parent | 6f001b7b2ec3a6fb77184ca32664f89fee7ff5c3 (diff) | |
download | openembedded-core-be54e1e0e769a9833b9b595e7a820ea9e098b91d.tar.gz openembedded-core-be54e1e0e769a9833b9b595e7a820ea9e098b91d.tar.bz2 openembedded-core-be54e1e0e769a9833b9b595e7a820ea9e098b91d.zip |
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)
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>
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 ??= "" # # libgcc-initial - fails with CPP sanity check error if host sysroot contains # cross gcc built for another target tune/variant +# target-sdk-provides-dummy - ${HOST_PREFIX} is empty which triggers the "NULL +# prefix" error. ICECC_SYSTEM_PACKAGE_BL += "\ libgcc-initial \ + target-sdk-provides-dummy \ " # "system" classes that should be blacklisted. When adding new entry, please # document why (how it failed) so that we can re-evaluate it later # +# image - Image aren't compiling, but the testing framework for images captures +# PARALLEL_MAKE as part of the test environment. Many tests won't use +# icecream, but leaving the high level of parallelism can cause them to +# consume an unnecessary amount of resources. ICECC_SYSTEM_CLASS_BL += "\ + image \ " def icecc_dep_prepend(d): |