mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 03:19:41 +01:00
Fix the build failure when debug build is enabled.
Add DEBUG_BUILD = "1" in conf/local.conf.
$ bitbake ccache
| /buildarea/tmp/work/core2-64-poky-linux/ccache/4.6.1-r0/ccache-4.6.1/src/third_party/xxhash.h:3932:1: error: inlining failed in call to 'always_inline' 'XXH3_accumulate_512_sse2': function not considered for inlining
3932 | XXH3_accumulate_512_sse2( void* XXH_RESTRICT acc,
| ^~~~~~~~~~~~~~~~~~~~~~~~
/buildarea/tmp/work/core2-64-poky-linux/ccache/4.6.1-r0/ccache-4.6.1/src/third_party/xxhash.h:4369:9: note: called from here
4369 | f_acc512(acc,
| ^~~~~~~~~~~~~
4370 | in,
| ~~~
4371 | secret + n*XXH_SECRET_CONSUME_RATE);
(From OE-Core rev: 4f78045a62d562f2c682695329570faa36ce3e0c)
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1022 B
BlitzBasic
29 lines
1022 B
BlitzBasic
SUMMARY = "a fast C/C++ compiler cache"
|
|
DESCRIPTION = "ccache is a compiler cache. It speeds up recompilation \
|
|
by caching the result of previous compilations and detecting when the \
|
|
same compilation is being done again. Supported languages are C, C\+\+, \
|
|
Objective-C and Objective-C++."
|
|
HOMEPAGE = "http://ccache.samba.org"
|
|
SECTION = "devel"
|
|
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.adoc;md5=7a19377a02749d8a1281ed608169b0ee"
|
|
|
|
DEPENDS = "zstd"
|
|
|
|
SRC_URI = "https://github.com/ccache/ccache/releases/download/v${PV}/${BP}.tar.gz \
|
|
file://0001-xxhash.h-Fix-build-with-gcc-12.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "59b28a57c3a45e48d6049001999c9f94cd4d3e9b0196994bed9a6a7437ffa3bc"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/ccache/ccache/releases/"
|
|
|
|
inherit cmake
|
|
|
|
PATCHTOOL = "patch"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
PACKAGECONFIG[docs] = "-DENABLE_DOCUMENTATION=ON,-DENABLE_DOCUMENTATION=OFF,asciidoc"
|
|
PACKAGECONFIG[redis] = "-DREDIS_STORAGE_BACKEND=ON,-DREDIS_STORAGE_BACKEND=OFF,hiredis"
|