1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 20:08:54 +03:00

[include] cmake.mk: don't assume toolchain binaries in .../bin/ if an external toolchain is used, rely on which instead

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26584 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-04-11 02:11:11 +00:00
parent 9ad628c924
commit e57549e01f

View File

@ -3,10 +3,17 @@ PKG_INSTALL:=1
MAKE_FLAGS+=VERBOSE=1
ifeq ($(CONFIG_CCACHE),)
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
CMAKE_C_COMPILER:=$(TOOLCHAIN_DIR)/bin/$(TARGET_CC)
CMAKE_C_COMPILER_ARG1:=
CMAKE_CXX_COMPILER:=$(TOOLCHAIN_DIR)/bin/$(TARGET_CXX)
CMAKE_CXX_COMPILER_ARG1:=
else
CMAKE_C_COMPILER:=$(shell which $(TARGET_CC))
CMAKE_C_COMPILER_ARG1:=
CMAKE_CXX_COMPILER:=$(shell which $(TARGET_CXX))
CMAKE_CXX_COMPILER_ARG1:=
endif
else
CMAKE_C_COMPILER:=$(STAGING_DIR_HOST)/bin/ccache
CMAKE_C_COMPILER_ARG1:=$(filter-out ccache,$(TARGET_CC))