Patrick Williams | 92b42cb | 2022-09-03 06:53:57 -0500 | [diff] [blame] | 1 | # |
| 2 | # Copyright OpenEmbedded Contributors |
| 3 | # |
| 4 | # SPDX-License-Identifier: MIT |
| 5 | # |
| 6 | |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 7 | # Icecream distributed compiling support |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | # |
| 9 | # Stages directories with symlinks from gcc/g++ to icecc, for both |
| 10 | # native and cross compilers. Depending on each configure or compile, |
| 11 | # the directories are added at the head of the PATH list and ICECC_CXX |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 12 | # and ICECC_CC are set. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 13 | # |
| 14 | # For the cross compiler, creates a tar.gz of our toolchain and sets |
| 15 | # ICECC_VERSION accordingly. |
| 16 | # |
| 17 | # The class now handles all 3 different compile 'stages' (i.e native ,cross-kernel and target) creating the |
| 18 | # necessary environment tar.gz file to be used by the remote machines. |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 19 | # It also supports meta-toolchain generation. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 20 | # |
| 21 | # If ICECC_PATH is not set in local.conf then the class will try to locate it using 'bb.utils.which' |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 22 | # but nothing is sure. ;) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | # |
| 24 | # If ICECC_ENV_EXEC is set in local.conf, then it should point to the icecc-create-env script provided by the user |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 25 | # or the default one provided by icecc-create-env_0.1.bb will be used. |
| 26 | # (NOTE that this is a modified version of the needed script and *not the one that comes with icecream*). |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | # |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 28 | # User can specify if specific recipes or recipes inheriting specific classes should not use icecc to distribute |
| 29 | # compile jobs to remote machines, but handle them locally by defining ICECC_CLASS_DISABLE and ICECC_RECIPE_DISABLE |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 30 | # with the appropriate values in local.conf. In addition the user can force to enable icecc for recipes |
| 31 | # which set an empty PARALLEL_MAKE variable by defining ICECC_RECIPE_ENABLE. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 32 | # |
| 33 | ######################################################################################### |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 34 | # Error checking is kept to minimum so double check any parameters you pass to the class |
| 35 | ######################################################################################### |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 37 | BB_BASEHASH_IGNORE_VARS += "ICECC_PARALLEL_MAKE ICECC_DISABLED ICECC_RECIPE_DISABLE \ |
| 38 | ICECC_CLASS_DISABLE ICECC_RECIPE_ENABLE ICECC_PATH ICECC_ENV_EXEC \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 39 | ICECC_CARET_WORKAROUND ICECC_CFLAGS ICECC_ENV_VERSION \ |
| 40 | ICECC_DEBUG ICECC_LOGFILE ICECC_REPEAT_RATE ICECC_PREFERRED_HOST \ |
| 41 | ICECC_CLANG_REMOTE_CPP ICECC_IGNORE_UNVERIFIED ICECC_TEST_SOCKET \ |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 42 | ICECC_ENV_DEBUG ICECC_REMOTE_CPP \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 43 | " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 44 | |
| 45 | ICECC_ENV_EXEC ?= "${STAGING_BINDIR_NATIVE}/icecc-create-env" |
| 46 | |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 47 | HOSTTOOLS_NONFATAL += "icecc patchelf" |
| 48 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 49 | # This version can be incremented when changes are made to the environment that |
| 50 | # invalidate the version on the compile nodes. Changing it will cause a new |
| 51 | # environment to be created. |
| 52 | # |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 53 | # A useful thing to do for testing icecream changes locally is to add a |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 54 | # subversion in local.conf: |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 55 | # ICECC_ENV_VERSION:append = "-my-ver-1" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 56 | ICECC_ENV_VERSION = "2" |
| 57 | |
| 58 | # Default to disabling the caret workaround, If set to "1" in local.conf, icecc |
| 59 | # will locally recompile any files that have warnings, which can adversely |
| 60 | # affect performance. |
| 61 | # |
| 62 | # See: https://github.com/icecc/icecream/issues/190 |
| 63 | export ICECC_CARET_WORKAROUND ??= "0" |
| 64 | |
Brad Bishop | 96ff198 | 2019-08-19 13:50:42 -0400 | [diff] [blame] | 65 | export ICECC_REMOTE_CPP ??= "0" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 66 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 67 | ICECC_CFLAGS = "" |
| 68 | CFLAGS += "${ICECC_CFLAGS}" |
| 69 | CXXFLAGS += "${ICECC_CFLAGS}" |
| 70 | |
| 71 | # Debug flags when generating environments |
| 72 | ICECC_ENV_DEBUG ??= "" |
| 73 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 74 | # Disable recipe list contains a list of recipes that can not distribute |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 75 | # compile tasks for one reason or the other. When adding a new entry, please |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 76 | # document why (how it failed) so that we can re-evaluate it later e.g. when |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 77 | # there is a new version. |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 78 | # |
| 79 | # libgcc-initial - fails with CPP sanity check error if host sysroot contains |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 80 | # cross gcc built for another target tune/variant. |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 81 | # pixman - prng_state: TLS reference mismatches non-TLS reference, possibly due to |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 82 | # pragma omp threadprivate(prng_state). |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 83 | # systemtap - _HelperSDT.c undefs macros and uses the identifiers in macros emitting |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 84 | # inline assembly. |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 85 | # target-sdk-provides-dummy - ${HOST_PREFIX} is empty which triggers the "NULL |
| 86 | # prefix" error. |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 87 | ICECC_RECIPE_DISABLE += "\ |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 88 | libgcc-initial \ |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 89 | pixman \ |
Brad Bishop | 79641f2 | 2019-09-10 07:20:22 -0400 | [diff] [blame] | 90 | systemtap \ |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 91 | target-sdk-provides-dummy \ |
| 92 | " |
| 93 | |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 94 | # Classes that should not use icecc. When adding a new entry, please |
| 95 | # document why (how it failed) so that we can re-evaluate it later. |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 96 | # |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 97 | # image - images aren't compiling, but the testing framework for images captures |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 98 | # PARALLEL_MAKE as part of the test environment. Many tests won't use |
| 99 | # icecream, but leaving the high level of parallelism can cause them to |
| 100 | # consume an unnecessary amount of resources. |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 101 | ICECC_CLASS_DISABLE += "\ |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 102 | image \ |
| 103 | " |
| 104 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 105 | def get_icecc_dep(d): |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 106 | # INHIBIT_DEFAULT_DEPS doesn't apply to the patch command. Whether or not |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 107 | # we need that built is the responsibility of the patch function / class, not |
| 108 | # the application. |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 109 | if not d.getVar('INHIBIT_DEFAULT_DEPS'): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 110 | return "icecc-create-env-native" |
| 111 | return "" |
| 112 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 113 | DEPENDS:prepend = "${@get_icecc_dep(d)} " |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 114 | |
Brad Bishop | 37a0e4d | 2017-12-04 01:01:44 -0500 | [diff] [blame] | 115 | get_cross_kernel_cc[vardepsexclude] += "KERNEL_CC" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 116 | def get_cross_kernel_cc(bb,d): |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 117 | if not icecc_is_kernel(bb, d): |
| 118 | return None |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 119 | |
| 120 | # evaluate the expression by the shell if necessary |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 121 | kernel_cc = d.getVar('KERNEL_CC') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 122 | if '`' in kernel_cc or '$(' in kernel_cc: |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 123 | import subprocess |
| 124 | kernel_cc = subprocess.check_output("echo %s" % kernel_cc, shell=True).decode("utf-8")[:-1] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 125 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 126 | kernel_cc = kernel_cc.replace('ccache', '').strip() |
| 127 | kernel_cc = kernel_cc.split(' ')[0] |
| 128 | kernel_cc = kernel_cc.strip() |
| 129 | return kernel_cc |
| 130 | |
| 131 | def get_icecc(d): |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 132 | return d.getVar('ICECC_PATH') or bb.utils.which(os.getenv("PATH"), "icecc") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 133 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 134 | def use_icecc(bb,d): |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 135 | if d.getVar('ICECC_DISABLED') == "1": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 136 | # don't even try it, when explicitly disabled |
| 137 | return "no" |
| 138 | |
| 139 | # allarch recipes don't use compiler |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 140 | if icecc_is_allarch(bb, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 141 | return "no" |
| 142 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 143 | if icecc_is_cross_canadian(bb, d): |
| 144 | return "no" |
| 145 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 146 | pn = d.getVar('PN') |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 147 | bpn = d.getVar('BPN') |
| 148 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 149 | # Enable/disable checks are made against BPN, because there is a good |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 150 | # chance that if icecc should be skipped for a recipe, it should be skipped |
| 151 | # for all the variants of that recipe. PN is still checked in case a user |
| 152 | # specified a more specific recipe. |
| 153 | check_pn = set([pn, bpn]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 154 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 155 | class_disable = (d.getVar('ICECC_CLASS_DISABLE') or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 156 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 157 | for bbclass in class_disable: |
| 158 | if bb.data.inherits_class(bbclass, d): |
| 159 | bb.debug(1, "%s: bbclass %s found in disable, disable icecc" % (pn, bbclass)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 160 | return "no" |
| 161 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 162 | disabled_recipes = (d.getVar('ICECC_RECIPE_DISABLE') or "").split() |
| 163 | enabled_recipes = (d.getVar('ICECC_RECIPE_ENABLE') or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 164 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 165 | if check_pn & set(disabled_recipes): |
| 166 | bb.debug(1, "%s: found in disable list, disable icecc" % pn) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 167 | return "no" |
| 168 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 169 | if check_pn & set(enabled_recipes): |
| 170 | bb.debug(1, "%s: found in enabled recipes list, enable icecc" % pn) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 171 | return "yes" |
| 172 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 173 | if d.getVar('PARALLEL_MAKE') == "": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 174 | bb.debug(1, "%s: has empty PARALLEL_MAKE, disable icecc" % pn) |
| 175 | return "no" |
| 176 | |
| 177 | return "yes" |
| 178 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 179 | def icecc_is_allarch(bb, d): |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 180 | return d.getVar("PACKAGE_ARCH") == "all" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 181 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 182 | def icecc_is_kernel(bb, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 183 | return \ |
| 184 | bb.data.inherits_class("kernel", d); |
| 185 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 186 | def icecc_is_native(bb, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 187 | return \ |
| 188 | bb.data.inherits_class("cross", d) or \ |
| 189 | bb.data.inherits_class("native", d); |
| 190 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 191 | def icecc_is_cross_canadian(bb, d): |
| 192 | return bb.data.inherits_class("cross-canadian", d) |
| 193 | |
| 194 | def icecc_dir(bb, d): |
| 195 | return d.expand('${TMPDIR}/work-shared/ice') |
| 196 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 197 | # Don't pollute allarch signatures with TARGET_FPU |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 198 | icecc_version[vardepsexclude] += "TARGET_FPU" |
| 199 | def icecc_version(bb, d): |
| 200 | if use_icecc(bb, d) == "no": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 201 | return "" |
| 202 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 203 | parallel = d.getVar('ICECC_PARALLEL_MAKE') or "" |
| 204 | if not d.getVar('PARALLEL_MAKE') == "" and parallel: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 205 | d.setVar("PARALLEL_MAKE", parallel) |
| 206 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 207 | # Disable showing the caret in the GCC compiler output if the workaround is |
| 208 | # disabled |
| 209 | if d.getVar('ICECC_CARET_WORKAROUND') == '0': |
| 210 | d.setVar('ICECC_CFLAGS', '-fno-diagnostics-show-caret') |
| 211 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 212 | if icecc_is_native(bb, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 213 | archive_name = "local-host-env" |
| 214 | elif d.expand('${HOST_PREFIX}') == "": |
| 215 | bb.fatal(d.expand("${PN}"), " NULL prefix") |
| 216 | else: |
| 217 | prefix = d.expand('${HOST_PREFIX}' ) |
| 218 | distro = d.expand('${DISTRO}') |
| 219 | target_sys = d.expand('${TARGET_SYS}') |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 220 | float = d.getVar('TARGET_FPU') or "hard" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 221 | archive_name = prefix + distro + "-" + target_sys + "-" + float |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 222 | if icecc_is_kernel(bb, d): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 223 | archive_name += "-kernel" |
| 224 | |
| 225 | import socket |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 226 | ice_dir = icecc_dir(bb, d) |
| 227 | tar_file = os.path.join(ice_dir, "{archive}-{version}-@VERSION@-{hostname}.tar.gz".format( |
| 228 | archive=archive_name, |
| 229 | version=d.getVar('ICECC_ENV_VERSION'), |
| 230 | hostname=socket.gethostname() |
| 231 | )) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 232 | |
| 233 | return tar_file |
| 234 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 235 | def icecc_path(bb,d): |
| 236 | if use_icecc(bb, d) == "no": |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 237 | # don't create unnecessary directories when icecc is disabled |
| 238 | return |
| 239 | |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 240 | staging = os.path.join(d.expand('${STAGING_BINDIR}'), "ice") |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 241 | if icecc_is_kernel(bb, d): |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 242 | staging += "-kernel" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 243 | |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 244 | return staging |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 245 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 246 | def icecc_get_external_tool(bb, d, tool): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 247 | external_toolchain_bindir = d.expand('${EXTERNAL_TOOLCHAIN}${bindir_cross}') |
| 248 | target_prefix = d.expand('${TARGET_PREFIX}') |
| 249 | return os.path.join(external_toolchain_bindir, '%s%s' % (target_prefix, tool)) |
| 250 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 251 | def icecc_get_tool_link(tool, d): |
| 252 | import subprocess |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 253 | try: |
| 254 | return subprocess.check_output("readlink -f %s" % tool, shell=True).decode("utf-8")[:-1] |
| 255 | except subprocess.CalledProcessError as e: |
| 256 | bb.note("icecc: one of the tools probably disappeared during recipe parsing, cmd readlink -f %s returned %d:\n%s" % (tool, e.returncode, e.output.decode("utf-8"))) |
| 257 | return tool |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 258 | |
| 259 | def icecc_get_path_tool(tool, d): |
| 260 | # This is a little ugly, but we want to make sure we add an actual |
| 261 | # compiler to the toolchain, not ccache. Some distros (e.g. Fedora) |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 262 | # have ccache enabled by default using symlinks in PATH, meaning ccache |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 263 | # would be found first when looking for the compiler. |
| 264 | paths = os.getenv("PATH").split(':') |
| 265 | while True: |
| 266 | p, hist = bb.utils.which(':'.join(paths), tool, history=True) |
| 267 | if not p or os.path.basename(icecc_get_tool_link(p, d)) != 'ccache': |
| 268 | return p |
| 269 | paths = paths[len(hist):] |
| 270 | |
| 271 | return "" |
| 272 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 273 | # Don't pollute native signatures with target TUNE_PKGARCH through STAGING_BINDIR_TOOLCHAIN |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 274 | icecc_get_tool[vardepsexclude] += "STAGING_BINDIR_TOOLCHAIN" |
| 275 | def icecc_get_tool(bb, d, tool): |
| 276 | if icecc_is_native(bb, d): |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 277 | return icecc_get_path_tool(tool, d) |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 278 | elif icecc_is_kernel(bb, d): |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 279 | return icecc_get_path_tool(get_cross_kernel_cc(bb, d), d) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 280 | else: |
| 281 | ice_dir = d.expand('${STAGING_BINDIR_TOOLCHAIN}') |
| 282 | target_sys = d.expand('${TARGET_SYS}') |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 283 | for p in ice_dir.split(':'): |
| 284 | tool_bin = os.path.join(p, "%s-%s" % (target_sys, tool)) |
| 285 | if os.path.isfile(tool_bin): |
| 286 | return tool_bin |
| 287 | external_tool_bin = icecc_get_external_tool(bb, d, tool) |
| 288 | if os.path.isfile(external_tool_bin): |
| 289 | return external_tool_bin |
| 290 | return "" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 291 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 292 | def icecc_get_and_check_tool(bb, d, tool): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 293 | # Check that g++ or gcc is not a symbolic link to icecc binary in |
| 294 | # PATH or icecc-create-env script will silently create an invalid |
| 295 | # compiler environment package. |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 296 | t = icecc_get_tool(bb, d, tool) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 297 | if t: |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 298 | link_path = icecc_get_tool_link(t, d) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 299 | if link_path == get_icecc(d): |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 300 | bb.error("%s is a symlink to %s in PATH and this prevents icecc from working" % (t, link_path)) |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 301 | return "" |
| 302 | else: |
| 303 | return t |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 304 | else: |
| 305 | return t |
| 306 | |
| 307 | wait_for_file() { |
| 308 | local TIME_ELAPSED=0 |
| 309 | local FILE_TO_TEST=$1 |
| 310 | local TIMEOUT=$2 |
| 311 | until [ -f "$FILE_TO_TEST" ] |
| 312 | do |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 313 | TIME_ELAPSED=$(expr $TIME_ELAPSED + 1) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 314 | if [ $TIME_ELAPSED -gt $TIMEOUT ] |
| 315 | then |
| 316 | return 1 |
| 317 | fi |
| 318 | sleep 1 |
| 319 | done |
| 320 | } |
| 321 | |
| 322 | def set_icecc_env(): |
| 323 | # dummy python version of set_icecc_env |
| 324 | return |
| 325 | |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 326 | set_icecc_env[vardepsexclude] += "KERNEL_CC" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 327 | set_icecc_env() { |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 328 | if [ "${@use_icecc(bb, d)}" = "no" ] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 329 | then |
| 330 | return |
| 331 | fi |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 332 | ICECC_VERSION="${@icecc_version(bb, d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 333 | if [ "x${ICECC_VERSION}" = "x" ] |
| 334 | then |
| 335 | bbwarn "Cannot use icecc: could not get ICECC_VERSION" |
| 336 | return |
| 337 | fi |
| 338 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 339 | ICE_PATH="${@icecc_path(bb, d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 340 | if [ "x${ICE_PATH}" = "x" ] |
| 341 | then |
| 342 | bbwarn "Cannot use icecc: could not get ICE_PATH" |
| 343 | return |
| 344 | fi |
| 345 | |
Brad Bishop | 977dc1a | 2019-02-06 16:01:43 -0500 | [diff] [blame] | 346 | ICECC_BIN="${@get_icecc(d)}" |
| 347 | if [ -z "${ICECC_BIN}" ]; then |
| 348 | bbwarn "Cannot use icecc: icecc binary not found" |
| 349 | return |
| 350 | fi |
| 351 | if [ -z "$(which patchelf patchelf-uninative)" ]; then |
| 352 | bbwarn "Cannot use icecc: patchelf not found" |
| 353 | return |
| 354 | fi |
| 355 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 356 | ICECC_CC="${@icecc_get_and_check_tool(bb, d, "gcc")}" |
| 357 | ICECC_CXX="${@icecc_get_and_check_tool(bb, d, "g++")}" |
| 358 | # cannot use icecc_get_and_check_tool here because it assumes as without target_sys prefix |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 359 | ICECC_WHICH_AS="${@bb.utils.which(os.getenv('PATH'), 'as')}" |
| 360 | if [ ! -x "${ICECC_CC}" -o ! -x "${ICECC_CXX}" ] |
| 361 | then |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 362 | bbnote "Cannot use icecc: could not get ICECC_CC or ICECC_CXX" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 363 | return |
| 364 | fi |
| 365 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 366 | ICE_VERSION="$($ICECC_CC -dumpversion)" |
| 367 | ICECC_VERSION=$(echo ${ICECC_VERSION} | sed -e "s/@VERSION@/$ICE_VERSION/g") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 368 | if [ ! -x "${ICECC_ENV_EXEC}" ] |
| 369 | then |
| 370 | bbwarn "Cannot use icecc: invalid ICECC_ENV_EXEC" |
| 371 | return |
| 372 | fi |
| 373 | |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 374 | # Create symlinks to icecc and wrapper-scripts in the recipe-sysroot directory |
| 375 | mkdir -p $ICE_PATH/symlinks |
| 376 | if [ -n "${KERNEL_CC}" ]; then |
| 377 | compilers="${@get_cross_kernel_cc(bb,d)}" |
| 378 | else |
| 379 | compilers="${HOST_PREFIX}gcc ${HOST_PREFIX}g++" |
| 380 | fi |
| 381 | for compiler in $compilers; do |
| 382 | ln -sf $ICECC_BIN $ICE_PATH/symlinks/$compiler |
Brad Bishop | 64c979e | 2019-11-04 13:55:29 -0500 | [diff] [blame] | 383 | cat <<-__EOF__ > $ICE_PATH/$compiler |
| 384 | #!/bin/sh -e |
| 385 | export ICECC_VERSION=$ICECC_VERSION |
| 386 | export ICECC_CC=$ICECC_CC |
| 387 | export ICECC_CXX=$ICECC_CXX |
| 388 | $ICE_PATH/symlinks/$compiler "\$@" |
| 389 | __EOF__ |
| 390 | chmod 775 $ICE_PATH/$compiler |
| 391 | done |
| 392 | |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 393 | ICECC_AS="$(${ICECC_CC} -print-prog-name=as)" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 394 | # for target recipes should return something like: |
| 395 | # /OE/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/arm920tt-oe-linux-gnueabi/gcc/arm-oe-linux-gnueabi/4.8.2/as |
| 396 | # and just "as" for native, if it returns "as" in current directory (for whatever reason) use "as" from PATH |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 397 | if [ "$(dirname "${ICECC_AS}")" = "." ] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 398 | then |
| 399 | ICECC_AS="${ICECC_WHICH_AS}" |
| 400 | fi |
| 401 | |
| 402 | if [ ! -f "${ICECC_VERSION}.done" ] |
| 403 | then |
Andrew Geissler | 7e0e3c0 | 2022-02-25 20:34:39 +0000 | [diff] [blame] | 404 | mkdir -p "$(dirname "${ICECC_VERSION}")" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 405 | |
| 406 | # the ICECC_VERSION generation step must be locked by a mutex |
| 407 | # in order to prevent race conditions |
| 408 | if flock -n "${ICECC_VERSION}.lock" \ |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 409 | ${ICECC_ENV_EXEC} ${ICECC_ENV_DEBUG} "${ICECC_CC}" "${ICECC_CXX}" "${ICECC_AS}" "${ICECC_VERSION}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 410 | then |
| 411 | touch "${ICECC_VERSION}.done" |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 412 | elif ! wait_for_file "${ICECC_VERSION}.done" 30 |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 413 | then |
| 414 | # locking failed so wait for ${ICECC_VERSION}.done to appear |
| 415 | bbwarn "Timeout waiting for ${ICECC_VERSION}.done" |
| 416 | return |
| 417 | fi |
| 418 | fi |
| 419 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 420 | # Don't let ccache find the icecream compiler links that have been created, otherwise |
| 421 | # it can end up invoking icecream recursively. |
| 422 | export CCACHE_PATH="$PATH" |
Brad Bishop | a5c52ff | 2018-11-23 10:55:50 +1300 | [diff] [blame] | 423 | export CCACHE_DISABLE="1" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 424 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 425 | export PATH="$ICE_PATH:$PATH" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 426 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 427 | bbnote "Using icecc path: $ICE_PATH" |
| 428 | bbnote "Using icecc tarball: $ICECC_VERSION" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 429 | } |
| 430 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 431 | do_configure:prepend() { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 432 | set_icecc_env |
| 433 | } |
| 434 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 435 | do_compile:prepend() { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 436 | set_icecc_env |
| 437 | } |
| 438 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 439 | do_compile_kernelmodules:prepend() { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 440 | set_icecc_env |
| 441 | } |
| 442 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 443 | do_install:prepend() { |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 444 | set_icecc_env |
| 445 | } |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 446 | |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 447 | # Icecream is not (currently) supported in the extensible SDK |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 448 | ICECC_SDK_HOST_TASK = "nativesdk-icecc-toolchain" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 449 | ICECC_SDK_HOST_TASK:task-populate-sdk-ext = "" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 450 | |
Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 451 | # Don't include icecream in uninative tarball |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 452 | ICECC_SDK_HOST_TASK:pn-uninative-tarball = "" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 453 | |
| 454 | # Add the toolchain scripts to the SDK |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 455 | TOOLCHAIN_HOST_TASK:append = " ${ICECC_SDK_HOST_TASK}" |
Andrew Geissler | 6aa7eec | 2023-03-03 12:41:14 -0600 | [diff] [blame] | 456 | |
| 457 | python () { |
| 458 | if d.getVar('ICECC_DISABLED') != "1": |
| 459 | for task in ['do_configure', 'do_compile', 'do_compile_kernelmodules', 'do_install']: |
| 460 | d.setVarFlag(task, 'network', '1') |
| 461 | } |