diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-02-12 10:52:09 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-15 13:24:10 +0000 |
commit | dea45ac88251b22b0b74dc4b3ba6ca13fe0b86d6 (patch) | |
tree | 47e575617c4ec5b13ef959844823587645636bda | |
parent | 7e524096879e821256812633ce37cda4b85b3073 (diff) | |
download | openembedded-core-contrib-dea45ac88251b22b0b74dc4b3ba6ca13fe0b86d6.tar.gz |
icecc.bbclass: Add Icecream support to SDK
If icecc is inherited, generated SDKs will automatically have optional
support for compiling using the Icecream distributed compiler
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/icecc.bbclass | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass index 9d5eaed57ce..8492ece60c3 100644 --- a/meta/classes/icecc.bbclass +++ b/meta/classes/icecc.bbclass @@ -346,3 +346,10 @@ do_compile_kernelmodules_prepend() { do_install_prepend() { set_icecc_env } + +# IceCream is not (currently) supported in the extensible SDK +ICECC_SDK_HOST_TASK = "nativesdk-icecc-toolchain" +ICECC_SDK_HOST_TASK_task-populate-sdk-ext = "" + +# Add the toolchain scripts to the SDK +TOOLCHAIN_HOST_TASK_append = " ${ICECC_SDK_HOST_TASK}" |