diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-02-27 18:27:48 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-02-27 18:27:48 +0000 |
commit | 9899fbb148528eddfa1376a268be73524fec57dc (patch) | |
tree | 00a99258a7c2d447bd328702730c352d51691a0d | |
parent | c0f8b43b177135b62c9107e4366ba5086e055403 (diff) | |
download | upstream-9899fbb148528eddfa1376a268be73524fec57dc.tar.gz upstream-9899fbb148528eddfa1376a268be73524fec57dc.tar.bz2 upstream-9899fbb148528eddfa1376a268be73524fec57dc.zip |
use distinct build/staging dirs for EABI/OABI builds
SVN-Revision: 19885
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) LIBCV:=$(call qstrip,$(CONFIG_LIBC_VERSION)) REAL_GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux$(if $(TARGET_SUFFIX),-$(TARGET_SUFFIX)) GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux - DIR_SUFFIX:=_$(LIBC)-$(LIBCV) + DIR_SUFFIX:=_$(LIBC)-$(LIBCV)$(if $(CONFIG_EABI_SUPPORT),_eabi) BUILD_DIR:=$(BUILD_DIR_BASE)/target-$(ARCH)$(DIR_SUFFIX)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX)) STAGING_DIR:=$(TOPDIR)/staging_dir/target-$(ARCH)$(DIR_SUFFIX) BUILD_DIR_TOOLCHAIN:=$(BUILD_DIR_BASE)/toolchain-$(ARCH)_gcc-$(GCCV)$(DIR_SUFFIX) |