projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9e4580
)
cmake: fix ccache command when using host ccache (patch from #9611)
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 24 Jul 2011 08:34:08 +0000
(08:34 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 24 Jul 2011 08:34:08 +0000
(08:34 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27742
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
include/cmake.mk
patch
|
blob
|
history
diff --git
a/include/cmake.mk
b/include/cmake.mk
index
6c5b5eb
..
ad9744d
100644
(file)
--- 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
This page took
0.021169 seconds
and
4
git commands to generate.