summaryrefslogtreecommitdiff
path: root/tools/ccache
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-06-06 13:27:11 +0000
committerJohn Crispin <john@openwrt.org>2012-06-06 13:27:11 +0000
commita53b084e497a9f1629a2caada833ebe14a6838b7 (patch)
treeb3c7d810e91ef20fedfcb2e87027309371c7c21d /tools/ccache
parent84a8853430779dd7ac93682654f008fe3f7eebd7 (diff)
downloadmtk-20170518-a53b084e497a9f1629a2caada833ebe14a6838b7.zip
mtk-20170518-a53b084e497a9f1629a2caada833ebe14a6838b7.tar.gz
mtk-20170518-a53b084e497a9f1629a2caada833ebe14a6838b7.tar.bz2
add ccache wrapper
SVN-Revision: 32075
Diffstat (limited to 'tools/ccache')
-rw-r--r--tools/ccache/Makefile10
-rwxr-xr-xtools/ccache/files/ccache_cc2
-rwxr-xr-xtools/ccache/files/ccache_cxx2
3 files changed, 14 insertions, 0 deletions
diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile
index 9bc0b59..8848fa5 100644
--- a/tools/ccache/Makefile
+++ b/tools/ccache/Makefile
@@ -17,6 +17,11 @@ PKG_CAT:=zcat
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)
define Host/Compile
$(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
@@ -26,6 +31,10 @@ ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
$(call Host/Clean/Default)
endef
+ define Host/Install
+ $(call Host/Install/Default)
+ $(call Host/Install/ccache)
+ endef
else
define Host/Prepare
endef
@@ -34,6 +43,7 @@ else
define Host/Compile
endef
define Host/Install
+ $(call Host/Install/ccache)
endef
define Host/Clean
endef
diff --git a/tools/ccache/files/ccache_cc b/tools/ccache/files/ccache_cc
new file mode 100755
index 0000000..01c4ad4
--- /dev/null
+++ b/tools/ccache/files/ccache_cc
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec ccache "${TARGET_CC_NOCACHE}" "$@"
diff --git a/tools/ccache/files/ccache_cxx b/tools/ccache/files/ccache_cxx
new file mode 100755
index 0000000..cc60eb3
--- /dev/null
+++ b/tools/ccache/files/ccache_cxx
@@ -0,0 +1,2 @@
+#!/bin/sh
+exec ccache "${TARGET_CXX_NOCACHE}" "$@"