diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-12-28 21:04:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-31 11:53:26 +0000 |
commit | 95c76b9bd458a10277c9df37d15d86203ec8f10f (patch) | |
tree | 6f0937d7ea784cbc0b0f820920c7e373af38091f /meta/conf/bitbake.conf | |
parent | 2ccb91bc740878f030002fb1a373a708bd125645 (diff) | |
download | poky-95c76b9bd458a10277c9df37d15d86203ec8f10f.tar.gz |
ccache.bbclass: use ccache from host distribution
ccache 4.x has hard dependencies on cmake-native (used as
build system) and zstd, which means inserting ccache-native
as DEPENDS into everything creates circular dependencies which
are impossible to break.
ccache 3.x did not have this problem as it used plain makefiles
and an in-tree copy of zlib.
(From OE-Core rev: f5b29367af4d8e5daea5771264774aa49519f9a8)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 92b6866d4d..af614ff347 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -498,7 +498,7 @@ HOSTTOOLS += " \ | |||
498 | HOSTTOOLS += "${@'ip ping ps scp ssh stty' if (bb.utils.contains_any('IMAGE_CLASSES', 'testimage testsdk', True, False, d) or any(x in (d.getVar("BBINCLUDED") or "") for x in ["testimage.bbclass", "testsdk.bbclass"])) else ''}" | 498 | HOSTTOOLS += "${@'ip ping ps scp ssh stty' if (bb.utils.contains_any('IMAGE_CLASSES', 'testimage testsdk', True, False, d) or any(x in (d.getVar("BBINCLUDED") or "") for x in ["testimage.bbclass", "testsdk.bbclass"])) else ''}" |
499 | 499 | ||
500 | # Link to these if present | 500 | # Link to these if present |
501 | HOSTTOOLS_NONFATAL += "aws gcc-ar gpg ld.bfd ld.gold nc pigz sftp socat ssh sudo" | 501 | HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc pigz sftp socat ssh sudo" |
502 | 502 | ||
503 | # Temporary add few more detected in bitbake world | 503 | # Temporary add few more detected in bitbake world |
504 | HOSTTOOLS_NONFATAL += "join nl size yes zcat" | 504 | HOSTTOOLS_NONFATAL += "join nl size yes zcat" |