1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-17 04:33:57 +02:00

cmake: fix ccache command when using host ccache (patch from #9611)

SVN-Revision: 27742
This commit is contained in:
Felix Fietkau 2011-07-24 08:34:08 +00:00
parent 9105dad418
commit 0d0915d168

View File

@ -15,9 +15,13 @@ ifeq ($(CONFIG_CCACHE),)
CMAKE_CXX_COMPILER_ARG1:= CMAKE_CXX_COMPILER_ARG1:=
endif endif
else 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_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)) CMAKE_CXX_COMPILER_ARG1:=$(filter-out ccache,$(TARGET_CXX))
endif endif