summaryrefslogtreecommitdiff
path: root/toolchain/binutils/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-04-24 09:24:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-04-24 09:24:55 +0200
commit74e7797a2f1a8cb7c96c74a48a94268879780d7d (patch)
tree8ddb47450be3b77346971434b8d434c19f7ab699 /toolchain/binutils/Makefile
parentab0aed0deaeb33a09a2729843a6af18173c36a79 (diff)
update arc toolchain components
Diffstat (limited to 'toolchain/binutils/Makefile')
-rw-r--r--toolchain/binutils/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/toolchain/binutils/Makefile b/toolchain/binutils/Makefile
index 24970feb7..833f0ca97 100644
--- a/toolchain/binutils/Makefile
+++ b/toolchain/binutils/Makefile
@@ -13,13 +13,13 @@ CONFOPTS+= --disable-libssp
endif
ifeq ($(ADK_TOOLCHAIN_WITH_LTO),y)
-CONFOPTS+= --enable-lto
+CONFOPTS+= --enable-lto --enable-plugins
else
-CONFOPTS+= --disable-lto
+CONFOPTS+= --disable-lto --disable-plugins
endif
ifeq ($(ADK_TOOLCHAIN_WITH_GOLD),y)
-CONFOPTS+= --enable-gold
+CONFOPTS+= --enable-gold=default
else
CONFOPTS+= --disable-gold
endif
@@ -56,20 +56,21 @@ endif
--disable-dependency-tracking \
--disable-libtool-lock \
--disable-nls \
- --enable-plugins \
+ --disable-sim \
+ --disable-gdb \
--disable-werror \
--disable-install-libiberty \
${CONFOPTS} \
);
$(MAKE) ${BINUTILS_MAKEOPTS} -C $(WRKBUILD) configure-host
- touch $@
+ @touch $@
$(WRKBUILD)/.compiled: $(WRKBUILD)/.configured
$(MAKE) ${BINUTILS_MAKEOPTS} ${BINUTILS_STATIC_MAKEOPTS} -C $(WRKBUILD) all
- touch $@
+ @touch $@
$(WRKBUILD)/.installed: $(WRKBUILD)/.compiled
$(MAKE) -C $(WRKBUILD) install
- touch $@
+ @touch $@
include ${ADK_TOPDIR}/mk/toolchain.mk