]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/ccache/ccache.mk
df92c5e9947d21ab3f39c84db66322304cefbe46
[coffee/buildroot.git] / package / ccache / ccache.mk
1 ################################################################################
2 #
3 # ccache
4 #
5 ################################################################################
6
7 CCACHE_VERSION = 3.1.8
8 CCACHE_SITE    = http://samba.org/ftp/ccache
9 CCACHE_SOURCE  = ccache-$(CCACHE_VERSION).tar.xz
10 CCACHE_LICENSE = GPLv3+, others
11 CCACHE_LICENSE_FILES = LICENSE.txt GPL-3.0.txt
12
13 # Force ccache to use its internal zlib. The problem is that without
14 # this, ccache would link against the zlib of the build system, but we
15 # might build and install a different version of zlib in $(O)/host
16 # afterwards, which ccache will pick up. This might break if there is
17 # a version mismatch. A solution would be to add host-zlib has a
18 # dependency of ccache, but it would require tuning the zlib .mk file
19 # to use HOSTCC_NOCCACHE as the compiler. Instead, we take the easy
20 # path: tell ccache to use its internal copy of zlib, so that ccache
21 # has zero dependency besides the C library.
22 HOST_CCACHE_CONF_OPT += ccache_cv_zlib_1_2_3=no
23
24 # Patch host-ccache as follows:
25 #  - Use BR_CACHE_DIR instead of CCACHE_DIR, because CCACHE_DIR
26 #    is already used by autotargets for the ccache package.
27 #    BR_CACHE_DIR is exported by Makefile based on config option
28 #    BR2_CCACHE_DIR.
29 #  - ccache shouldn't use the compiler binary mtime to detect a change in
30 #    the compiler, because in the context of Buildroot, that completely
31 #    defeats the purpose of ccache. Of course, that leaves the user
32 #    responsible for purging its cache when the compiler changes.
33 #  - Change hard-coded last-ditch default to match path in .config, to avoid
34 #    the need to specify BR_CACHE_DIR when invoking ccache directly.
35 define HOST_CCACHE_PATCH_CONFIGURATION
36         sed -i 's,getenv("CCACHE_DIR"),getenv("BR_CACHE_DIR"),' $(@D)/ccache.c
37         sed -i 's,getenv("CCACHE_COMPILERCHECK"),"none",' $(@D)/ccache.c
38         sed -i 's,"%s/.ccache","$(BR_CACHE_DIR)",' $(@D)/ccache.c
39 endef
40
41 HOST_CCACHE_POST_CONFIGURE_HOOKS += \
42         HOST_CCACHE_PATCH_CONFIGURATION
43
44 define HOST_CCACHE_MAKE_CACHE_DIR
45         mkdir -p $(BR_CACHE_DIR)
46 endef
47
48 HOST_CCACHE_POST_INSTALL_HOOKS += \
49         HOST_CCACHE_MAKE_CACHE_DIR
50
51 $(eval $(host-autotools-package))
52
53 ifeq ($(BR2_CCACHE),y)
54 ccache-stats: host-ccache
55         $(Q)$(CCACHE) -s
56
57 ccache-options: host-ccache
58 ifeq ($(CCACHE_OPTIONS),)
59         $(Q)echo "Usage: make ccache-options CCACHE_OPTIONS=\"opts\""
60         $(Q)echo "where 'opts' corresponds to one or more valid ccache options" \
61         "(see ccache help text below)"
62         $(Q)echo
63 endif
64         $(Q)$(CCACHE) $(CCACHE_OPTIONS)
65 endif