diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-07 21:01:37 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-02-07 21:01:37 +0000 |
commit | e9c10a0c8e4511e19a31f983162c171ab4dccba2 (patch) | |
tree | 22a45ecacb486499d94597fa13e046bdfb960f2c /target | |
parent | ccc33238a418bfacf6a7f97433e092fe72e9f74b (diff) | |
download | upstream-e9c10a0c8e4511e19a31f983162c171ab4dccba2.tar.gz upstream-e9c10a0c8e4511e19a31f983162c171ab4dccba2.tar.bz2 upstream-e9c10a0c8e4511e19a31f983162c171ab4dccba2.zip |
toolchain: respect CONFIG_VERSION_FILENAMES and add host system suffix
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 44311
Diffstat (limited to 'target')
-rw-r--r-- | target/toolchain/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/target/toolchain/Makefile b/target/toolchain/Makefile index 6e60a08231..67c908530f 100644 --- a/target/toolchain/Makefile +++ b/target/toolchain/Makefile @@ -13,10 +13,7 @@ include $(INCLUDE_DIR)/host.mk override MAKEFLAGS= -PKG_OS:=$(word 2,$(subst -, ,$(shell $(HOSTCC) -dumpmachine))) -PKG_CPU:=$(word 1,$(subst -, ,$(shell $(HOSTCC) -dumpmachine))) - -TOOLCHAIN_NAME:=OpenWrt-Toolchain-$(BOARD)-for-$(ARCH)$(ARCH_SUFFIX)-gcc-$(GCCV)$(DIR_SUFFIX) +TOOLCHAIN_NAME:=OpenWrt-Toolchain-$(if $(CONFIG_VERSION_FILENAMES),$(VERSION_NUMBER)-)$(BOARD)$(if $(SUBTARGET),-$(SUBTARGET))_gcc-$(GCCV)$(DIR_SUFFIX).$(HOST_OS)-$(HOST_ARCH) TOOLCHAIN_BUILD_DIR:=$(BUILD_DIR)/$(TOOLCHAIN_NAME) EXCLUDE_DIRS:=*/ccache \ */initial \ |