summaryrefslogtreecommitdiffstats
path: root/meta/classes/icecc.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-28 23:28:15 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-02 15:44:10 +0100
commitbb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch)
tree76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/classes/icecc.bbclass
parentfcc456ee4b8f619134abb4649db53c638074082c (diff)
downloadpoky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz
Convert to new override syntax
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/icecc.bbclass')
-rw-r--r--meta/classes/icecc.bbclass18
1 files changed, 9 insertions, 9 deletions
diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 089d52732f..794e9930ad 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -47,7 +47,7 @@ HOSTTOOLS_NONFATAL += "icecc patchelf"
47# 47#
48# A useful thing to do for testing Icecream changes locally is to add a 48# A useful thing to do for testing Icecream changes locally is to add a
49# subversion in local.conf: 49# subversion in local.conf:
50# ICECC_ENV_VERSION_append = "-my-ver-1" 50# ICECC_ENV_VERSION:append = "-my-ver-1"
51ICECC_ENV_VERSION = "2" 51ICECC_ENV_VERSION = "2"
52 52
53# Default to disabling the caret workaround, If set to "1" in local.conf, icecc 53# Default to disabling the caret workaround, If set to "1" in local.conf, icecc
@@ -105,7 +105,7 @@ def get_icecc_dep(d):
105 return "icecc-create-env-native" 105 return "icecc-create-env-native"
106 return "" 106 return ""
107 107
108DEPENDS_prepend = "${@get_icecc_dep(d)} " 108DEPENDS:prepend = "${@get_icecc_dep(d)} "
109 109
110get_cross_kernel_cc[vardepsexclude] += "KERNEL_CC" 110get_cross_kernel_cc[vardepsexclude] += "KERNEL_CC"
111def get_cross_kernel_cc(bb,d): 111def get_cross_kernel_cc(bb,d):
@@ -428,28 +428,28 @@ set_icecc_env() {
428 bbnote "Using icecc tarball: $ICECC_VERSION" 428 bbnote "Using icecc tarball: $ICECC_VERSION"
429} 429}
430 430
431do_configure_prepend() { 431do_configure:prepend() {
432 set_icecc_env 432 set_icecc_env
433} 433}
434 434
435do_compile_prepend() { 435do_compile:prepend() {
436 set_icecc_env 436 set_icecc_env
437} 437}
438 438
439do_compile_kernelmodules_prepend() { 439do_compile_kernelmodules:prepend() {
440 set_icecc_env 440 set_icecc_env
441} 441}
442 442
443do_install_prepend() { 443do_install:prepend() {
444 set_icecc_env 444 set_icecc_env
445} 445}
446 446
447# IceCream is not (currently) supported in the extensible SDK 447# IceCream is not (currently) supported in the extensible SDK
448ICECC_SDK_HOST_TASK = "nativesdk-icecc-toolchain" 448ICECC_SDK_HOST_TASK = "nativesdk-icecc-toolchain"
449ICECC_SDK_HOST_TASK_task-populate-sdk-ext = "" 449ICECC_SDK_HOST_TASK:task-populate-sdk-ext = ""
450 450
451# Don't include IceCream in uninative tarball 451# Don't include IceCream in uninative tarball
452ICECC_SDK_HOST_TASK_pn-uninative-tarball = "" 452ICECC_SDK_HOST_TASK:pn-uninative-tarball = ""
453 453
454# Add the toolchain scripts to the SDK 454# Add the toolchain scripts to the SDK
455TOOLCHAIN_HOST_TASK_append = " ${ICECC_SDK_HOST_TASK}" 455TOOLCHAIN_HOST_TASK:append = " ${ICECC_SDK_HOST_TASK}"