diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-24 08:34:08 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-07-24 08:34:08 +0000 |
commit | 0f9517f03d4ea15bf320f18b7d186fda336e1b12 (patch) | |
tree | 223455c3228c336142713a9bec5542fd371ca345 /include | |
parent | c9e45803ce9a6173356c2fcabbe122a884a2add5 (diff) |
cmake: fix ccache command when using host ccache (patch from #9611)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27742 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/cmake.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/cmake.mk b/include/cmake.mk index 6c5b5eb4f..ad9744d3f 100644 --- a/include/cmake.mk +++ b/include/cmake.mk @@ -15,9 +15,13 @@ ifeq ($(CONFIG_CCACHE),) CMAKE_CXX_COMPILER_ARG1:= endif else - CMAKE_C_COMPILER:=$(STAGING_DIR_HOST)/bin/ccache + CCACHE:=$(shell which ccache) + ifeq ($(CCACHE),) + CCACHE:=$(STAGING_DIR_HOST)/bin/ccache + endif + CMAKE_C_COMPILER:=$(CCACHE) CMAKE_C_COMPILER_ARG1:=$(filter-out ccache,$(TARGET_CC)) - CMAKE_CXX_COMPILER:=$(STAGING_DIR_HOST)/bin/ccache + CMAKE_CXX_COMPILER:=$(CCACHE) CMAKE_CXX_COMPILER_ARG1:=$(filter-out ccache,$(TARGET_CXX)) endif |