mirror of
https://git.yoctoproject.org/poky
synced 2026-04-24 03:32:13 +02:00
The LICENSE checksum has changed because of updated copyright years. SRC_URI has been changed to git, because upstream tarball is broken (includes configure.ac but not .m4 files it depends on). Add a backported patch that fixes builds with older versions of make and external zlib. (From OE-Core rev: 1a78720cba38b47d89c0460db7846d0984916273) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
525 B
PHP
21 lines
525 B
PHP
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 = "GPLv3+"
|
|
|
|
DEPENDS = "zlib"
|
|
|
|
SRC_URI = "git://git.samba.org/ccache.git"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools
|
|
|
|
BBCLASSEXTEND = "native"
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|