Skip to content
Snippets Groups Projects
Commit a53b084e authored by John Crispin's avatar John Crispin
Browse files

add ccache wrapper

SVN-Revision: 32075
parent 84a88534
No related branches found
No related tags found
No related merge requests found
...@@ -188,8 +188,12 @@ INSTALL_DATA:=install -m0644 ...@@ -188,8 +188,12 @@ INSTALL_DATA:=install -m0644
INSTALL_CONF:=install -m0600 INSTALL_CONF:=install -m0600
ifneq ($(CONFIG_CCACHE),) ifneq ($(CONFIG_CCACHE),)
TARGET_CC:= ccache $(TARGET_CC) TARGET_CC_NOCACHE:=$(TARGET_CC)
TARGET_CXX:= ccache $(TARGET_CXX) TARGET_CXX_NOCACHE:=$(TARGET_CXX)
export TARGET_CC_NOCACHE
export TARGET_CXX_NOCACHE
TARGET_CC:= ccache_cc
TARGET_CXX:= ccache_cxx
HOSTCC:= ccache $(HOSTCC) HOSTCC:= ccache $(HOSTCC)
endif endif
......
...@@ -17,6 +17,11 @@ PKG_CAT:=zcat ...@@ -17,6 +17,11 @@ PKG_CAT:=zcat
include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/host-build.mk
define Host/Install/ccache
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/
$(CP) ./files/* $(STAGING_DIR_HOST)/bin/
endef
ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found) ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
define Host/Compile define Host/Compile
$(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR) $(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
...@@ -26,6 +31,10 @@ ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found) ...@@ -26,6 +31,10 @@ ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
$(call Host/Clean/Default) $(call Host/Clean/Default)
endef endef
define Host/Install
$(call Host/Install/Default)
$(call Host/Install/ccache)
endef
else else
define Host/Prepare define Host/Prepare
endef endef
...@@ -34,6 +43,7 @@ else ...@@ -34,6 +43,7 @@ else
define Host/Compile define Host/Compile
endef endef
define Host/Install define Host/Install
$(call Host/Install/ccache)
endef endef
define Host/Clean define Host/Clean
endef endef
......
#!/bin/sh
exec ccache "${TARGET_CC_NOCACHE}" "$@"
#!/bin/sh
exec ccache "${TARGET_CXX_NOCACHE}" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment