aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/binutils/Config.in
Commit message (Expand)AuthorAgeFilesLines
* binutils: remove some unused obsolete versionsFelix Fietkau2013-06-301-9/+0
* build: consistently use 'depends on' instead of 'depends'Felix Fietkau2013-04-171-4/+4
* toolchain: remove duplicate default in bintutils KconfigJo-Philipp Wich2012-12-021-2/+1
* remove support for ubicom32Florian Fainelli2012-11-301-6/+1
* binutils: remove 2.21Florian Fainelli2012-11-191-6/+0
* binutils: add support for 2.23.1Florian Fainelli2012-11-191-0/+6
* enable 2.22 for unsupported archs if BROKEN is enabledImre Kaloz2012-02-121-2/+2
* use binutils 2.22 by defaultImre Kaloz2012-02-121-3/+6
* add binutils 2.22Imre Kaloz2012-02-081-0/+6
* binutils: add binutils 2.21.1Hauke Mehrtens2011-08-061-0/+6
* remove the CS variant - broken since it's additionImre Kaloz2011-02-211-7/+0
* only enable binutils 2.21 for avr32 if BROKEN is selectedImre Kaloz2011-02-181-0/+1
* whitespace cleanupImre Kaloz2011-02-181-6/+6
* add binutils 2.21Imre Kaloz2011-02-181-0/+5
* add avr32 supportImre Kaloz2011-02-161-3/+2
* switch to binutils 2.20.1 (except for avr32 and ubicom32)Imre Kaloz2010-11-021-2/+4
* remove support for binutils 2.18 and 2.20Imre Kaloz2010-10-281-10/+0
* add binutils-2.20.1Alexandros C. Couloumbis2010-03-111-0/+5
* use binutils 2.19.1 by default for avr32, tooImre Kaloz2010-02-161-3/+0
* ubicom32 isn't supported with binutils 2.18Imre Kaloz2010-02-151-0/+1
* add binutils 2.20Felix Fietkau2009-11-021-0/+6
* add a binutils variant based on a binutils snapshot and codesourcery g++ enha...Felix Fietkau2009-10-191-3/+11
* add comments & fix descriptions in toolchain config itemsNicolas Thill2009-09-101-1/+1
* use binutils 2.19.1 on ppc44x, tooImre Kaloz2009-07-281-2/+0
* binutils: use 2.19.1 for ppc40x by defaultGabor Juhos2009-07-191-2/+2
* remove binutils 2.17 and 2.19Felix Fietkau2009-05-051-9/+0
* fix missing binutils default version changeFelix Fietkau2009-03-171-1/+1
* switch to binutils 2.19.1 by defaultFelix Fietkau2009-03-141-1/+2
* binutils: add support for v2.19.1 (from #4492, thanks to dwrobel)Nicolas Thill2009-02-031-0/+3
* default to binutils 2.18 on ppc* for manual selection as wellFelix Fietkau2009-02-021-0/+1
* make binutils 2.18 default for ppc44x and ppc40xFelix Fietkau2009-02-021-0/+1
* binutils 2.19 does not support avr32 yetFelix Fietkau2009-01-271-0/+1
* add binutils 2.19 (patch from #4367)Felix Fietkau2009-01-171-0/+4
* use binutils 2.18 for avr32, 2.17 is severely brokenFelix Fietkau2009-01-021-0/+2
* nuke binutils 2.16.1 - old, unused, buggyImre Kaloz2008-12-021-6/+0
* add avr32 support to binutils 2.18Imre Kaloz2008-11-251-1/+0
* Fix format of depends clause for avr32 Signed-off-by: Robert P. J. Day <rpjda...Travis Kemen2008-03-291-1/+1
* Add binutils-2.18 patches for all arches but AVR32.Felix Fietkau2008-02-021-0/+1
* added binutils 2.18 selection, Signed-off-by: Robert P. J. Day <rpjday@crashc...John Crispin2007-12-201-0/+4
* Add binutils extra configure optionsFelix Fietkau2007-10-231-0/+7
* use binutils 2.17 by defaultImre Kaloz2007-06-081-2/+2
* finally move buildroot-ng to trunkFelix Fietkau2016-03-201-0/+24
an>" \ CPPFLAGS="$(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" \ CONFIGURE_PATH = . CONFIGURE_CMD = ./configure replace_script=$(FIND) $(1) -name $(2) | $(XARGS) chmod u+w; \ $(FIND) $(1) -name $(2) | $(XARGS) -n1 cp --remove-destination \ $(SCRIPT_DIR)/$(2); define Build/Configure/Default (cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH)/$(strip $(3)); \ if [ -x $(CONFIGURE_CMD) ]; then \ $(call replace_script,$(PKG_BUILD_DIR)/$(3),config.guess) \ $(call replace_script,$(PKG_BUILD_DIR)/$(3),config.sub) \ $(CONFIGURE_VARS) \ $(2) \ $(CONFIGURE_CMD) \ $(CONFIGURE_ARGS) \ $(1); \ fi; \ ) endef MAKE_VARS = \ CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ CXXFLAGS="$(TARGET_CXXFLAGS) $(EXTRA_CXXFLAGS) $(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" MAKE_FLAGS = \ $(TARGET_CONFIGURE_OPTS) \ CROSS="$(TARGET_CROSS)" \ ARCH="$(ARCH)" MAKE_INSTALL_FLAGS = \ $(MAKE_FLAGS) \ DESTDIR="$(PKG_INSTALL_DIR)" MAKE_PATH = . define Build/Compile/Default +$(MAKE_VARS) \ $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \ $(MAKE_FLAGS) \ $(1); endef define Build/Install/Default $(MAKE_VARS) \ $(MAKE) -C $(PKG_BUILD_DIR)/$(MAKE_PATH) \ $(MAKE_INSTALL_FLAGS) \ $(if $(1), $(1), install); endef define Build/Dist/Default $(call Build/Compile/Default, DESTDIR="$(PKG_BUILD_DIR)/tmp" CC="$(TARGET_CC)" dist) endef define Build/DistCheck/Default $(call Build/Compile/Default, DESTDIR="$(PKG_BUILD_DIR)/tmp" CC="$(TARGET_CC)" distcheck) endef