mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:01:52 +02:00
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
This commit is contained in:
parent
c9e45803ce
commit
0f9517f03d
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user