summaryrefslogtreecommitdiff
path: root/toolchain/binutils/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-05-22 12:08:54 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-05-22 12:09:04 +0200
commit13c9428fc4d2f5611a9930fda24ae314a19d6c36 (patch)
treee50cd1f02c10c9098a680b16008d2fd7dc495d2c /toolchain/binutils/Makefile
parentf44df263b7317f05ce71513421af6d70171d5d21 (diff)
sh: allow to build fdpic toolchain for pure sh architecture
Diffstat (limited to 'toolchain/binutils/Makefile')
-rw-r--r--toolchain/binutils/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile
index 8f5adc393..a844388cc 100644
--- a/toolchain/binutils/Makefile
+++ b/toolchain/binutils/Makefile
@@ -43,7 +43,9 @@ ifeq ($(ADK_TARGET_ARCH_XTENSA),y)
tar xf $(ADK_TOPDIR)/target/xtensa/overlay/xtensa_$(ADK_TARGET_CPU_TYPE).tar \
--strip-components=1 -C $(WRKSRC) binutils
endif
- (cd $(WRKBUILD); PATH='$(HOST_PATH)' MAKEINFO=true \
+ (cd $(WRKBUILD); PATH='$(HOST_PATH)' \
+ MAKEINFO=true \
+ M4='${STAGING_HOST_DIR}/usr/bin/m4' \
$(WRKBUILD)/configure \
--prefix=$(TOOLCHAIN_DIR)/usr \
--target=$(GNU_TARGET_NAME) \
@@ -66,7 +68,7 @@ $(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
PATH='$(HOST_PATH)' $(MAKE) MAKEINFO=true -C $(WRKBUILD) install
-ifeq ($(ADK_TARGET_ARCH_H8300)$(ADK_TARGET_ARCH_NDS32)$(ADK_TARGET_CPU_SH_J2),y)
+ifeq ($(ADK_TARGET_ARCH_H8300)$(ADK_TARGET_ARCH_NDS32)$(ADK_TARGET_ARCH_SH),y)
$(INSTALL_DIR) $(STAGING_TARGET_DIR)/usr/lib/ldscripts
$(CP) $(WRKBUILD)/ld/ldscripts/* $(STAGING_TARGET_DIR)/usr/lib/ldscripts/
endif