]> code.ossystems Code Review - openembedded-core.git/commitdiff
meta/icecc.bbclass: Update system blacklists
authorJoshua Watt <jpewhacker@gmail.com>
Tue, 20 Nov 2018 20:04:16 +0000 (14:04 -0600)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 21 Nov 2018 11:48:18 +0000 (11:48 +0000)
Updates the system blacklists to include packages that are known to have
problems compiling under icecream

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/icecc.bbclass

index 9ccd42d7845bce3b98bed0d61d9da8c499e5c158..3f04a1b63af9f0bd35bb6f32ad25ed810f8f381a 100644 (file)
@@ -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):